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