using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace wms.sqlsugar.model.fj { [Tenant("fj")] [SugarTable("bill_product_pack_rule", "成品装箱信息表")] public class fjBillProductPackRule : BaseModel { /// /// 帘线生产工单号 /// [SugarColumn(ColumnName = "doc_code", ColumnDataType = "nvarchar", Length = 50)] public string DocCode { get; set; } /// /// 箱号 /// [SugarColumn(ColumnName = "box_no", ColumnDataType = "nvarchar", Length = 50)] public string BoxNo { get; set; } /// /// 装箱规则(1:层配;2:SPC) /// [SugarColumn(ColumnName = "pack_rule", ColumnDataType = "nvarchar", Length = 10)] public string PackRule { get; set; } /// /// 每箱满轮子数 /// [SugarColumn(ColumnName = "full_count")] public int FullCount { get; set; } /// /// 每箱空轮子数 /// [SugarColumn(ColumnName = "empty_count")] public int EmptyCount { get; set; } /// /// 是否允许焊点盘 /// [SugarColumn(ColumnName = "is_solder", ColumnDataType = "nvarchar", Length = 50)] public string IsSolder { get; set; } /// /// 成套目标扭转值上限 /// [SugarColumn(ColumnName = "torsion_max", Length = 18, DecimalDigits = 6)] public decimal TorsionMax { get; set; } /// /// 成套目标扭转值下限 /// [SugarColumn(ColumnName = "torsion_min", Length = 18, DecimalDigits = 6)] public decimal TorsionMin { get; set; } /// /// 子托盘编码 /// [SugarColumn(ColumnName = "tray_code", ColumnDataType = "nvarchar", Length = 100)] public string TrayCode { get; set; } /// /// 干燥剂 /// [SugarColumn(ColumnName = "dryer", ColumnDataType = "nvarchar", Length = 100)] public string Dryer { get; set; } /// /// 中间隔板 /// [SugarColumn(ColumnName = "bulkhead", ColumnDataType = "nvarchar", Length = 100)] public string Bulkhead { get; set; } /// /// 抽真空 /// [SugarColumn(ColumnName = "vacuum", ColumnDataType = "nvarchar", Length = 100)] public string Vacuum { get; set; } /// /// 装箱状态 /// [SugarColumn(ColumnName = "enchase_state", ColumnDataType = "nvarchar", Length = 100)] public string EnchaseState { get; set; } } }