using SqlSugar; namespace NewPdaSqlServer.entity; /// /// [SugarTable("MES_POSITION")] public class MesPosition { /// /// 默认值: (newid()) /// [SugarColumn(ColumnName = "guid", IsPrimaryKey = true)] public Guid Guid { get; set; } /// /// [SugarColumn(ColumnName = "id")] public int Id { get; set; } /// /// 岗位编号 /// [SugarColumn(ColumnName = "position_id")] public string PositionId { get; set; } /// /// 岗位名称 /// [SugarColumn(ColumnName = "position_name")] public string PositionName { get; set; } /// /// 岗位描述 /// [SugarColumn(ColumnName = "position_description")] public string PositionDescription { get; set; } /// /// 所属部门 /// [SugarColumn(ColumnName = "department")] public string Department { get; set; } /// /// 建立日期 /// [SugarColumn(ColumnName = "creation_date")] public DateTime? CreationDate { get; set; } /// /// 禁用人 /// [SugarColumn(ColumnName = "disabled_by")] public string DisabledBy { get; set; } /// /// 禁用日期 /// [SugarColumn(ColumnName = "disabled_date")] public DateTime? DisabledDate { get; set; } /// /// [SugarColumn(ColumnName = "remark1")] public string Remark1 { get; set; } /// /// [SugarColumn(ColumnName = "remark2")] public string Remark2 { get; set; } /// /// [SugarColumn(ColumnName = "remark3")] public string Remark3 { get; set; } /// /// [SugarColumn(ColumnName = "remark4")] public string Remark4 { get; set; } /// /// [SugarColumn(ColumnName = "remark5")] public string Remark5 { get; set; } /// /// 禁用状态 /// [SugarColumn(ColumnName = "fforbidstatus")] public string Fforbidstatus { get; set; } /// /// 创建组织 /// [SugarColumn(ColumnName = "Fumbrella")] public string Fumbrella { get; set; } /// /// 使用组织 /// [SugarColumn(ColumnName = "FSubsidiary")] public string FSubsidiary { get; set; } }