using SqlSugar; using System; namespace wms.sqlsugar.model.sx { /// /// 码垛明细子表 /// [Tenant("sx")] [SugarTable("Palletizingdetail")] public partial class Palletizingdetail : BaseModel { /// /// 码垛主表id /// [SugarColumn(ColumnDataType = "bigint", IsNullable = false)] public long PalletizingId { get; set; } /// /// 任务号 /// [SugarColumn(ColumnDataType = "int", IsNullable = false)] public int TaskNum { get; set; } /// /// 工字轮条码 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string BarCode { get; set; } /// /// sku /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string Sku { get; set; } /// /// 机台组 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string WbGroupCode { get; set; } /// /// 装箱规则 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string PackRule { get; set; } /// /// 码垛层 /// [SugarColumn(ColumnDataType = "int", IsNullable = false)] public int Layer { get; set; } /// /// 等级 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string GradeCode { get; set; } /// /// 物料编码 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string MaterialCode { get; set; } /// /// 物料描述 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 500, IsNullable = true)] public string MaterialDesc { get; set; } /// /// 是否做扭转检测 0 不做;2 做 /// [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = false)] public decimal OvcFlag { get; set; } /// /// 扭转值 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string OvcValue { get; set; } /// /// 焊点数量 /// [SugarColumn(ColumnDataType = "decimal", Length = 18, DecimalDigits = 2, IsNullable = true)] public decimal SolderCount { get; set; } /// /// 绕向 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string Winding { get; set; } /// /// 是否黑盘 /// [SugarColumn(ColumnDataType = "bit", IsNullable = false)] public bool IsBlack { get; set; } /// /// 批次号 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string Batch { get; set; } /// /// 是否控制盘 /// [SugarColumn(ColumnDataType = "bit", IsNullable = false)] public bool IsControlpanel { get; set; } /// /// 装箱单据号 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string InDocsNo { get; set; } /// /// 单爪码垛完成时间 /// [SugarColumn(ColumnDataType = "datetime", IsNullable = false)] public DateTime PalletizingDate { get; set; } /// /// 码垛工位 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string EquNo { get; set; } /// /// 总重量 /// [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = false)] public decimal TolWQty { get; set; } /// /// 净重 /// [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = false)] public decimal NetWQty { get; set; } /// /// 皮重 /// [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = false)] public decimal TareWQty { get; set; } /// /// 材料号 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string CLBarCode { get; set; } /// /// 箱号 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string BoxCode { get; set; } } }