using System; using System.Collections.Generic; using SqlSugar; using WMS.BZModels; namespace wms.sqlsugar.model.fj { [Tenant("fj")] [SugarTable("WCS_PalletizingLayer")] public class WCSPalletizinglayer : BaseEntityModel { /// /// Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "Id")] public int Id { get; set; } /// /// 码垛主表Id /// [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="码垛主表Id")] public int PalletizingId { get; set; } /// /// 是否空置 /// [SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否空置")] public bool IsEmpty { get; set; } /// /// 层号 /// [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="层号")] public int LayerNo { get; set; } /// /// 行数 /// [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="行数")] public int RowCountQty { get; set; } /// /// 当前所有的物料号 /// [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="当前所有的物料号")] public string MatCodeList { get; set; } /// /// 是否结束 /// [SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否结束")] public bool Finish { get; set; } /// /// 仓库编号 /// [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="仓库编号")] public string WarehouseCode { get; set; } } }