using SqlSugar;
namespace NewPdaSqlServer.entity
{
///
/// 系统快码分类表
///
[SugarTable("MES_SYS_LOOKUP_TYPES")]
public class MesSysLookupTypes
{
///
///
/// 默认值: (newid())
///
[SugarColumn(ColumnName="guid" ,IsPrimaryKey = true )]
public Guid Guid { get; set; }
///
/// 系统快码类型编码
///
[SugarColumn(ColumnName="LOOKUP_TYPE_CODE" )]
public string LookupTypeCode { get; set; }
///
/// 系统快码类型名称
///
[SugarColumn(ColumnName="LOOKUP_TYPE_NAME" )]
public string LookupTypeName { get; set; }
///
/// 系统快码类型|0-系统级,1-用户级,系统级不允许修改
///
[SugarColumn(ColumnName="LOOKUP_TYPE" )]
public byte? LookupType { get; set; }
///
/// 系统快码种类|业务分类
///
[SugarColumn(ColumnName="LOOKUP_SORT" )]
public string LookupSort { get; set; }
///
/// 允许修改显示值|0-否,1-是
///
[SugarColumn(ColumnName="ALLOW_UPDATE_FLAG" )]
public byte? AllowUpdateFlag { get; set; }
///
/// 允许增加记录|0-否,1-是
///
[SugarColumn(ColumnName="ALLOW_ADD_FLAG" )]
public byte? AllowAddFlag { get; set; }
///
/// 允许删除记录|0-否,1-是
///
[SugarColumn(ColumnName="ALLOW_DEL_FLAG" )]
public byte? AllowDelFlag { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName="DESCRIPTION" )]
public string Description { get; set; }
///
/// 创建人
///
[SugarColumn(ColumnName="CREATE_BY" )]
public string CreateBy { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName="CREATE_DATE" )]
public DateTime? CreateDate { get; set; }
///
/// 最后更新人
///
[SugarColumn(ColumnName="LASTUPDATE_BY" )]
public string LastupdateBy { get; set; }
///
/// 最后更新时间
///
[SugarColumn(ColumnName="LASTUPDATE_DATE" )]
public DateTime? LastupdateDate { get; set; }
///
/// 工厂
///
[SugarColumn(ColumnName="FACTORY" )]
public string Factory { get; set; }
///
/// 公司
///
[SugarColumn(ColumnName="COMPANY" )]
public string Company { get; set; }
///
/// 模块类别
///
[SugarColumn(ColumnName="FTYPE" )]
public string Ftype { get; set; }
///
/// 审核时间
///
[SugarColumn(ColumnName="check_date" )]
public DateTime? CheckDate { get; set; }
///
/// 审核人
///
[SugarColumn(ColumnName="check_by" )]
public string CheckBy { get; set; }
///
/// 审核状态
///
[SugarColumn(ColumnName="check_status" )]
public bool? CheckStatus { get; set; }
}
}