1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- 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
- {
- /// <summary>
- /// Id
- /// </summary>
- [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "Id")]
- public int Id { get; set; }
- /// <summary>
- /// 码垛主表Id
- /// </summary>
- [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="码垛主表Id")]
- public int PalletizingId { get; set; }
- /// <summary>
- /// 是否空置
- /// </summary>
- [SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否空置")]
- public bool IsEmpty { get; set; }
- /// <summary>
- /// 层号
- /// </summary>
- [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="层号")]
- public int LayerNo { get; set; }
- /// <summary>
- /// 行数
- /// </summary>
- [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="行数")]
- public int RowCountQty { get; set; }
- /// <summary>
- /// 当前所有的物料号
- /// </summary>
- [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="当前所有的物料号")]
- public string MatCodeList { get; set; }
- /// <summary>
- /// 是否结束
- /// </summary>
- [SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否结束")]
- public bool Finish { get; set; }
- /// <summary>
- /// 仓库编号
- /// </summary>
- [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="仓库编号")]
- public string WarehouseCode { get; set; }
- }
- }
|