using SqlSugar; namespace MES.Service.Modes; /// /// 岗位信息 /// [SugarTable("MES_POSITION")] public class MesPosition { /// /// [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)] public decimal 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; } /// /// 禁用状态 A 启用 B禁用 /// [SugarColumn(ColumnName = "FFORBIDSTATUS")] public string? Fforbidstatus { get; set; } /// /// 使用組織 /// [SugarColumn(ColumnName = "FSUBSIDIARY")] public string? FUseOrgId { get; set; } /// /// 創建組織 /// [SugarColumn(ColumnName = "FUMBRELLA")] public string? FCreateOrgId { get; set; } [SugarColumn(IsIgnore = true)] public string? Type { get; set; } }