123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- 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
- {
- /// <summary>
- /// 机台号
- /// </summary>
- [SugarColumn(ColumnName = "wb_code", ColumnDataType = "nvarchar", Length = 50)]
- public string WbCode { get; set; }
- /// <summary>
- /// 机台名称
- /// </summary>
- [SugarColumn(ColumnName = "wb_name", ColumnDataType = "nvarchar", Length = 100)]
- public string WbName { get; set; }
- /// <summary>
- /// 机台组
- /// </summary>
- [SugarColumn(ColumnName = "wb_group_code", ColumnDataType = "nvarchar", Length = 100)]
- public string WbGroupCode { get; set; }
- /// <summary>
- /// 优先分配分拣库序号
- /// </summary>
- [SugarColumn(ColumnName = "ware_code", ColumnDataType = "nvarchar", Length = 50)]
- public string WareCode { get; set; }
- /// <summary>
- /// AGV托盘位
- /// </summary>
- [SugarColumn(ColumnName = "station", ColumnDataType = "nvarchar", Length = 50)]
- public string Station { get; set; }
- /// <summary>
- /// 左/右手车
- /// </summary>
- [SugarColumn(ColumnName = "direction", ColumnDataType = "nvarchar", Length = 50)]
- public string Direction { get; set; }
- /// <summary>
- /// 帘线工单号
- /// </summary>
- [SugarColumn(ColumnName = "doc_code", ColumnDataType = "nvarchar", Length = 50)]
- public string DocCode { get; set; }
- }
- }
|