¶Ô±ÈÐÂÎļþ |
| | |
| | | using SqlSugar; |
| | | |
| | | namespace MES.Service.Modes; |
| | | |
| | | /// <summary> |
| | | /// å²ä½ä¿¡æ¯ |
| | | /// </summary> |
| | | [SugarTable("MES_POSITION")] |
| | | public class MesPosition |
| | | { |
| | | /// <summary> |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)] |
| | | public decimal Id { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å²ä½ç¼å· |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "POSITION_ID")] |
| | | public string? PositionId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å²ä½åç§° |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "POSITION_NAME")] |
| | | public string? PositionName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å²ä½æè¿° |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "POSITION_DESCRIPTION")] |
| | | public string? PositionDescription { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æå±é¨é¨ |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "DEPARTMENT")] |
| | | public string? Department { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å»ºç«æ¥æ |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "CREATION_DATE")] |
| | | public DateTime? CreationDate { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç¦ç¨äºº |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "DISABLED_BY")] |
| | | public string? DisabledBy { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç¦ç¨æ¥æ |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "DISABLED_DATE")] |
| | | public DateTime? DisabledDate { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç¦ç¨ç¶æ A å¯ç¨ Bç¦ç¨ |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "FFORBIDSTATUS")] |
| | | public string? Fforbidstatus { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 使ç¨çµç¹ |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "FSUBSIDIARY")] |
| | | public string? FUseOrgId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// åµå»ºçµç¹ |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "FUMBRELLA")] |
| | | public string? FCreateOrgId { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] public string? Type { get; set; } |
| | | } |