using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace wms.sqlsugar.model.fj { [Tenant("fj")] [SugarTable("bill_machine_info", "机台信息表")] public class fjBillMachineInfo : BaseModel { /// /// 机台号 /// [SugarColumn(ColumnName = "wb_code", ColumnDataType = "nvarchar", Length = 50)] public string WbCode { get; set; } /// /// 机台名称 /// [SugarColumn(ColumnName = "wb_name", ColumnDataType = "nvarchar", Length = 100)] public string WbName { get; set; } /// /// 机台组 /// [SugarColumn(ColumnName = "wb_group_code", ColumnDataType = "nvarchar", Length = 100)] public string WbGroupCode { get; set; } /// /// 优先分配分拣库序号 /// [SugarColumn(ColumnName = "ware_code", ColumnDataType = "nvarchar", Length = 50)] public string WareCode { get; set; } /// /// AGV托盘位 /// [SugarColumn(ColumnName = "station", ColumnDataType = "nvarchar", Length = 50)] public string Station { get; set; } /// /// 左/右手车 /// [SugarColumn(ColumnName = "direction", ColumnDataType = "nvarchar", Length = 50)] public string Direction { get; set; } /// /// 帘线工单号 /// [SugarColumn(ColumnName = "doc_code", ColumnDataType = "nvarchar", Length = 50)] public string DocCode { get; set; } } }