using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace wms.sqlsugar.model.fj { [Tenant("fj")] [SugarTable("bill_wet_stamp_detail", "湿拉跺型子表")] public class fjBillWetStackDetail : BaseModel { /// /// 湿拉跺型主表Id /// [SugarColumn(ColumnName = "stack_id")] public long StackId { get; set; } /// /// 工字轮在托盘上坐标编号 /// [SugarColumn(ColumnName = "coord", ColumnDataType = "nvarchar", Length = 50)] public string Coord { get; set; } /// /// 有/无 /// [SugarColumn(ColumnName = "is_empty")] public int IsEmpty { get; set; } /// /// 材料号,空容器为容器号 /// [SugarColumn(ColumnName = "inv_barcode", ColumnDataType = "nvarchar", Length = 50)] public string InvBarCode { get; set; } /// /// 湿拉物料编码 /// [SugarColumn(ColumnName = "mater_code", ColumnDataType = "nvarchar", Length = 50)] public string MaterCode { get; set; } /// /// 正/反面 /// [SugarColumn(ColumnName = "side")] public int Side { get; set; } /// /// 工字轮规格(WS09,WS18,等) /// [SugarColumn(ColumnName = "hw_spec", ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string HWSpec { get; set; } /// /// 单/双丝 /// [SugarColumn(ColumnName = "silk_type", ColumnDataType = "nvarchar", Length = 50)] public string silk_type { get; set; } /// /// 钢丝直径 /// [SugarColumn(ColumnName = "silk_diam", Length = 18, DecimalDigits = 6)] public decimal SilkDiam { get; set; } /// /// 是否芯股 /// [SugarColumn(ColumnName = "is_core", ColumnDataType = "nvarchar", Length = 50)] public string IsCore { get; set; } /// /// 行停用 /// [SugarColumn(ColumnName = "row_stop")] public int RowStop { get; set; } } }