12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- using System;
- using System.Collections.Generic;
- using SqlSugar;
- using WMS.BZModels;
- namespace wms.sqlsugar.model.fj
- {
- [Tenant("fj")]
- [SugarTable("WCS_PalletizingRow")]
- public class WCSPalletizingrow : 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 PalletizingLayerId { 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 QtyMaxCount { get; set; }
- /// <summary>
- /// 行号
- /// </summary>
- [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="行号")]
- public int RowNo { get; set; }
- /// <summary>
- /// 是否混合料行
- /// </summary>
- [SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否混合料行")]
- public bool IsMixRow { get; set; }
- /// <summary>
- /// 任务Id
- /// </summary>
- [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="任务Id")]
- public int CacheLineId { 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 LineCode { get; set; }
- /// <summary>
- /// 创建时间
- /// </summary>
- [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")]
- public DateTime AddTime { get; set; }
- /// <summary>
- /// 编辑时间
- /// </summary>
- [SugarColumn(IsNullable = true, ColumnDescription = "编辑时间")]
- public DateTime EditTime { get; set; }
- /// <summary>
- /// 仓库编号
- /// </summary>
- [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="仓库编号")]
- public string WarehouseCode { get; set; }
- }
- }
|