| 123456789101112131415161718192021222324252627282930313233343536 |
- namespace Admin.NET.Plugin.AiDOP.Production;
- /// <summary>
- /// 鎺掍骇寮傚父鏃ュ織锛圫cheduleExceptionMaster锛?
- /// </summary>
- [SugarTable("ScheduleExceptionMaster", "鎺掍骇寮傚父鏃ュ織")]
- public class ScheduleExceptionMaster
- {
- [SugarColumn(ColumnName = "RecID", IsPrimaryKey = true, IsIdentity = false)]
- public long RecID { get; set; }
- [SugarColumn(ColumnName = "Domain", Length = 8, IsNullable = true)]
- public string? Domain { get; set; }
- [SugarColumn(ColumnName = "WorkOrd", Length = 64, IsNullable = true)]
- public string? WorkOrd { get; set; }
- [SugarColumn(ColumnName = "ItemNum", Length = 30, IsNullable = true)]
- public string? ItemNum { get; set; }
- [SugarColumn(ColumnName = "CreateTime", IsNullable = true)]
- public DateTime? CreateTime { get; set; }
- [SugarColumn(ColumnName = "Remark", Length = 512, IsNullable = true)]
- public string? Remark { get; set; }
- [SugarColumn(ColumnName = "Type", Length = 64, IsNullable = true)]
- public string? Type { get; set; }
- [SugarColumn(ColumnName = "OptTime", IsNullable = true)]
- public DateTime? OptTime { get; set; }
- /// <summary>绉熸埛ID锛堝绉熸埛闅旂锛?/summary>
- [SugarColumn(ColumnName = "tenant_id", IsNullable = true)]
- public long? TenantId { get; set; }
- }
|