using SqlSugar; namespace MES.Service.Modes; /// /// 岗位信息 /// [SugarTable("MES_POSITION")] public class MesPosition { /// /// [SugarColumn(ColumnName = "ID", OracleSequenceName = "SEQ_POSITION_ID")] public decimal Id { get; set; } /// /// 岗位编号 /// [SugarColumn(ColumnName = "POSITION_ID", IsPrimaryKey = true)] 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; } /// /// 禁用状态 A 启用 B禁用 /// [SugarColumn(ColumnName = "FFORBIDSTATUS")] public string? Fforbidstatus { 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(IsIgnore = true)] public string? Type { get; set; } }