using SqlSugar; using System; namespace DeviceRepair.Models.SFC { /// /// /// [SugarTable("InspBatch")] public class InspBatchInfo { /// /// /// [SugarColumn(ColumnName = "Id", IsIdentity = true)] public int Id { get; set; } /// /// /// [SugarColumn(ColumnName = "GUID", IsPrimaryKey = true)] public Guid Guid { get; set; } /// /// /// [SugarColumn(ColumnName = "Batch", IsPrimaryKey = true)] public string Batch { get; set; } /// /// /// [SugarColumn(ColumnName = "Product")] public string Product { get; set; } /// /// /// [SugarColumn(ColumnName = "MoCode")] public string MoCode { get; set; } /// /// /// [SugarColumn(ColumnName = "MoQty")] public decimal? MoQty { get; set; } /// /// /// [SugarColumn(ColumnName = "ufts")] public byte[] Ufts { get; set; } /// /// /// [SugarColumn(ColumnName = "CreateBy")] public string CreateBy { get; set; } /// /// /// 默认值: (getdate()) /// [SugarColumn(ColumnName = "CreateOn")] public DateTime CreateOn { get; set; } /// /// /// [SugarColumn(ColumnName = "ModifyBy")] public string ModifyBy { get; set; } /// /// /// [SugarColumn(ColumnName = "ModifyOn")] public DateTime? ModifyOn { get; set; } /// /// /// [SugarColumn(ColumnName = "bComplete")] public bool? BComplete { get; set; } /// /// /// [SugarColumn(ColumnName = "CompleteQty")] public decimal? CompleteQty { get; set; } /// /// /// [SugarColumn(ColumnName = "ScrapQty")] public decimal? ScrapQty { get; set; } /// /// /// [SugarColumn(ColumnName = "CompleteBy")] public string CompleteBy { get; set; } /// /// /// [SugarColumn(ColumnName = "CompleteOn")] public DateTime? CompleteOn { get; set; } /// /// /// [SugarColumn(ColumnName = "bClosed")] public bool? BClosed { get; set; } /// /// /// [SugarColumn(ColumnName = "ClosedBy")] public string ClosedBy { get; set; } /// /// /// [SugarColumn(ColumnName = "ClosedOn")] public DateTime? ClosedOn { get; set; } /// /// /// [SugarColumn(ColumnName = "ClosedDesc")] public string ClosedDesc { get; set; } /// /// /// 默认值: ('A') /// [SugarColumn(ColumnName = "Status")] public string Status { get; set; } /// /// /// [SugarColumn(ColumnName = "bLocked")] public bool? BLocked { get; set; } /// /// /// [SugarColumn(ColumnName = "LockedBy")] public string LockedBy { get; set; } /// /// /// [SugarColumn(ColumnName = "LockedOn")] public DateTime? LockedOn { get; set; } /// /// /// [SugarColumn(ColumnName = "LockedType")] public string LockedType { get; set; } /// /// /// [SugarColumn(ColumnName = "LockedDesc")] public string LockedDesc { get; set; } /// /// /// [SugarColumn(ColumnName = "LockedIP")] public string LockedIP { get; set; } /// /// /// [SugarColumn(ColumnName = "LockedMAC")] public string LockedMAC { get; set; } /// /// /// [SugarColumn(ColumnName = "LockedName")] public string LockedName { get; set; } /// /// /// [SugarColumn(ColumnName = "Note")] public string Note { get; set; } /// /// /// [SugarColumn(ColumnName = "CompleteBanCi")] public string CompleteBanCi { get; set; } /// /// /// [SugarColumn(ColumnName = "CreateBanCi")] public string CreateBanCi { get; set; } /// /// /// [SugarColumn(ColumnName = "ModifyBanCi")] public string ModifyBanCi { get; set; } /// /// /// [SugarColumn(ColumnName = "CreateClient")] public string CreateClient { get; set; } /// /// /// [SugarColumn(ColumnName = "ModifyClient")] public string ModifyClient { get; set; } /// /// /// [SugarColumn(ColumnName = "CompleteClient")] public string CompleteClient { get; set; } /// /// /// [SugarColumn(ColumnName = "CloseClient")] public string CloseClient { get; set; } /// /// /// [SugarColumn(ColumnName = "ProductName")] public string ProductName { get; set; } /// /// /// [SugarColumn(ColumnName = "SapNo")] public string SapNo { get; set; } /// /// /// [SugarColumn(ColumnName = "IsFA")] public bool? IsFA { get; set; } /// /// /// [SugarColumn(ColumnName = "Technology")] public string Technology { get; set; } } }