namespace Admin.NET.Plugin.AiDOP.Production; /// /// 鎺掍骇寮傚父鏃ュ織锛圫cheduleExceptionMaster锛? /// [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; } /// 绉熸埛ID锛堝绉熸埛闅旂锛?/summary> [SugarColumn(ColumnName = "tenant_id", IsNullable = true)] public long? TenantId { get; set; } }