using Mapster;
namespace Model
{
///
/// APP功能模块 app_module
///
[SugarTable("app_module", "APP功能模块")]
[Tenant("0")]
public class AppModule
{
///
/// ID
///
[SugarColumn(ColumnDescription = "ID", IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")]
public int id { get; set; }
///
/// 版本号
///
[SugarColumn(ColumnDescription = "版本号", ColumnName = "version")]
public int version { get; set; }
///
/// 删除标记
///
[SugarColumn(ColumnDescription = "删除标记", ColumnName = "del_flag")]
public int delFlag { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnDescription = "创建时间", ColumnName = "create_time")]
public DateTime? createTime { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnDescription = "更新时间", ColumnName = "update_time")]
public DateTime? updateTime { get; set; }
///
/// 创建人
///
[SugarColumn(ColumnDescription = "创建人", Length = 32, ColumnName = "create_by")]
public string? createBy { get; set; }
///
/// 更新人
///
[SugarColumn(ColumnDescription = "更新人", Length = 32, ColumnName = "update_by")]
public string? updateBy { get; set; }
///
/// 模块名称
///
[SugarColumn(ColumnDescription = "模块名称", Length = 100, ColumnName = "module_name")]
public string? moduleName { get; set; }
///
/// 模块介绍
///
[SugarColumn(ColumnDescription = "模块介绍", Length = 255, ColumnName = "module_detail")]
public string? moduleDetail { get; set; }
///
/// 状态
///
[SugarColumn(ColumnDescription = "状态", ColumnName = "status")]
public int status { get; set; }
///
/// 模块功能
///
[SugarColumn(ColumnDescription = "模块功能", Length = 20, ColumnName = "module_feature")]
public string? moduleFeature { get; set; }
///
/// 使用厂商
///
[SugarColumn(ColumnDescription = "使用厂商", Length = 50, ColumnName = "factory_owner")]
public string? factoryOwner { get; set; }
///
/// 支付系统
///
[SugarColumn(ColumnDescription = "支付系统", Length = 20, ColumnName = "system_support")]
public string? systemSupport { get; set; }
}
}