12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- using System;
- using System.Collections.Generic;
- using SqlSugar;
- using WMS.BZModels;
- namespace wms.sqlsugar.model.sx
- {
- [Tenant("sx")]
- [SugarTable("PalletLayerMath")]
- public class Palletlayermath : BaseModel
- {
- /// <summary>
- /// 组盘id
- /// </summary>
- [SugarColumn(ColumnDataType = "bigint", IsNullable = false, ColumnDescription = "组盘id")]
- public long ContGrpId { get; set; }
- /// <summary>
- /// 工字轮条码
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false, ColumnDescription = "工字轮条码")]
- public string ContBarCode { get; set; }
- /// <summary>
- /// 码垛层数
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "码垛层数")]
- public int Layer { get; set; }
- /// <summary>
- /// sku
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true, ColumnDescription = "sku")]
- public string SkuCode { get; set; }
- /// <summary>
- /// 是否码垛完成
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "是否码垛完成")]
- public int Finish { get; set; }
- /// <summary>
- /// 装箱规则id
- /// </summary>
- [SugarColumn(ColumnDataType = "bigint", IsNullable = false, ColumnDescription = "装箱规则id")]
- public long PboxruleId { get; set; }
- /// <summary>
- /// 是否产生任务
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "是否产生任务")]
- public int Istask { get; set; }
- /// <summary>
- /// 码垛工位
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "码垛工位")]
- public string Palletequip { get; set; }
- /// <summary>
- /// IsBlack
- /// </summary>
- [SugarColumn(ColumnDataType = "bit", IsNullable = false)]
- public bool IsBlack { get; set; }
- /// <summary>
- /// Depth
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false)]
- public int Depth { get; set; }
- /// <summary>
- /// SolderCount
- /// </summary>
- [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = true)]
- public decimal? SolderCount { get; set; }
- /// <summary>
- /// BoxCode
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
- public string BoxCode { get; set; }
- }
- }
|