123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using System;
- using System.Collections.Generic;
- using SqlSugar;
- using WMS.BZModels;
- namespace wms.sqlsugar.model.fj
- {
- /// <summary>
- /// 环形库码垛缓存信息
- /// </summary>
- [Tenant("fj")]
- [SugarTable("Bill_RingPalletizingInfo")]
- public class BillRingpalletizinginfo : BaseModel
- {
- /// <summary>
- /// 仓库ID
- /// </summary>
- [SugarColumn(ColumnDataType ="bigint" , IsNullable = false , ColumnDescription ="仓库ID")]
- public long WareHouseId { get; set; }
- /// <summary>
- /// 垛形主表ID
- /// </summary>
- [SugarColumn(ColumnDataType ="bigint" , IsNullable = false , ColumnDescription ="垛形主表ID")]
- public long BomSetGrpId { get; set; }
- /// <summary>
- /// 工字轮个数
- /// </summary>
- [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="工字轮个数")]
- public int HWCountQty { get; set; }
- /// <summary>
- /// BomCode(投料信息)
- /// </summary>
- [SugarColumn(ColumnDataType ="nvarchar" , Length = 200 , IsNullable = false , ColumnDescription ="BomCode(投料信息)")]
- public string BomCode { get; set; }
- /// <summary>
- /// 已有工字轮个数
- /// </summary>
- [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="已有工字轮个数")]
- public int HaveQty { get; set; }
- /// <summary>
- /// 是否出库
- /// </summary>
- [SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否出库")]
- public bool Out { get; set; }
- /// <summary>
- /// 上一次分配时的放置位信息
- /// </summary>
- [SugarColumn(ColumnDataType ="int" , IsNullable = true , ColumnDescription ="上一次分配时的放置位信息")]
- public int? LastXYNO { get; set; }
- }
- }
|