using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WMS.BZModels; namespace wms.sqlsugar.model.cp { [Tenant("cp")] [SugarTable("Bill_BoxItemshistory")] public class BillBoxitemsHistory : BaseModel { /// /// CongBoxId /// [SugarColumn(ColumnDataType = "bigint", IsNullable = false)] public long CongBoxId { get; set; } /// /// HuNr /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string HuNr { get; set; } /// /// ExecStateCode /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string ExecStateCode { get; set; } /// /// OrderNo /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string OrderNo { get; set; } /// /// OrderRowNo /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string OrderRowNo { get; set; } /// /// InvStateCode /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string InvStateCode { get; set; } /// /// InDocsNo /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string InDocsNo { get; set; } /// /// InDocsRowNo /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string InDocsRowNo { get; set; } /// /// SuppCode /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string SuppCode { get; set; } /// /// SuppName /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string SuppName { get; set; } /// /// CustCode /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string CustCode { get; set; } /// /// CustName /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string CustName { get; set; } /// /// MatId /// [SugarColumn(ColumnDataType = "bigint", IsNullable = false)] public long MatId { get; set; } /// /// MaterialCode /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string MaterialCode { get; set; } /// /// MaterialDesc /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string MaterialDesc { get; set; } /// /// HuTotalWt /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string HuTotalWt { get; set; } /// /// HuNetWt /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string HuNetWt { get; set; } /// /// HuTareWt /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string HuTareWt { get; set; } /// /// BadpointCount /// [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = false)] public decimal BadpointCount { get; set; } /// /// Batch /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string Batch { get; set; } /// /// GradeCode /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string GradeCode { get; set; } /// /// Winding /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string Winding { get; set; } /// /// OvcFlag /// [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = false)] public decimal OvcFlag { get; set; } /// /// PlumpGrade /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string PlumpGrade { get; set; } /// /// OvcValue /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string OvcValue { get; set; } /// /// ProduceDate /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string ProduceDate { get; set; } /// /// OrderProcessNo /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string OrderProcessNo { get; set; } /// /// MachineGroupcode /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string MachineGroupcode { get; set; } /// /// ProdLine /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string ProdLine { get; set; } /// /// ProdLineCode /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string ProdLineCode { get; set; } /// /// State /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string State { get; set; } /// /// SalesDoc /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string SalesDoc { get; set; } /// /// Sku /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string Sku { get; set; } /// /// ShiftNo /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string ShiftNo { get; set; } /// /// ShiftGroup /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string ShiftGroup { get; set; } /// /// HWBarCode /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string HWBarCode { get; set; } /// /// CLBarCode /// [SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = true)] public string CLBarCode { get; set; } /// /// EquNo /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string EquNo { get; set; } /// /// 上传标志(0未上传1上传成功 2上传失败) /// [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "上传标志(0未上传1上传成功 2上传失败)")] public int UpLoadFlag { get; set; } /// /// IsNeedUpLoadFlag /// [SugarColumn(ColumnDataType = "int", IsNullable = false)] public int IsNeedUpLoadFlag { get; set; } /// /// Layer /// [SugarColumn(ColumnDataType = "int", IsNullable = false)] public int Layer { get; set; } /// /// IsControlpanel /// [SugarColumn(ColumnDataType = "bit", IsNullable = true)] public bool? IsControlpanel { get; set; } /// /// IsBlack /// [SugarColumn(ColumnDataType = "bit", IsNullable = true)] public bool? IsBlack { get; set; } /// /// PalletizingDate /// [SugarColumn(ColumnDataType = "datetime", IsNullable = true)] public DateTime? PalletizingDate { get; set; } /// /// TimeStamp /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string TimeStamp { get; set; } } }