using System; using System.Collections.Generic; using SqlSugar; using WMS.BZModels; namespace wms.sqlsugar.model.fj { [Tenant("fj")] [SugarTable("WCS_Palletizing")] public class WCSPalletizing : BaseEntityModel { /// /// Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "ID")] public int Id { get; set; } /// /// 任务Id /// [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="任务Id")] public int TaskId { get; set; } /// /// 任务Id /// [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="任务Id")] public string PalleCode { get; set; } /// /// 垛型编码 /// [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = false , ColumnDescription ="垛型编码")] public string Code { get; set; } /// /// 短垛型编码 /// [SugarColumn(ColumnDataType ="smallint" , IsNullable = false , ColumnDescription ="短垛型编码")] public int ShortCode { get; set; } /// /// 帘线物料编码 /// [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = false , ColumnDescription ="帘线物料编码")] public string ProMaterCode { get; set; } /// /// 码垛工位 /// [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="码垛工位")] public string PalletizingStation { get; set; } /// /// 产品总数 /// [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="产品总数")] public int CountQty { get; set; } /// /// 托盘类型 /// [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = false , ColumnDescription ="托盘类型")] public string TpTypeCode { get; set; } /// /// 层数 /// [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="层数")] public int LayerCountQty { get; set; } /// /// 垛型大类 /// [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="垛型大类")] public int StampType { get; set; } /// /// 是否结束 /// [SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否结束")] public bool Finish { get; set; } /// /// 当前所有的物料号 /// [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="当前所有的物料号")] public string MatCodeList { get; set; } /// /// 仓库编号 /// [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="仓库编号")] public string WarehouseCode { get; set; } /// /// 执行设备编号 /// [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="执行设备编号")] public string DeviceCode { get; set; } /// /// 创建时间 /// [SugarColumn(IsNullable = false, ColumnDescription = "创建时间")] public DateTime AddTime { get; set; } } }