using System;
using System.Collections.Generic;
using SqlSugar;
using WMS.BZModels;
namespace wms.sqlsugar.model.sx
{
[Tenant("sx")]
[SugarTable("Palletizing")]
public class Palletizing : BaseModel
{
///
/// 码垛工位
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false, ColumnDescription = "码垛工位")]
public string Equip { get; set; }
///
/// 最大码垛数量
///
[SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "最大码垛数量")]
public int PalletMax { get; set; }
///
/// 是否强制结盘
///
[SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "是否强制结盘")]
public int Finish { get; set; }
///
/// 码垛状态
///
[SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "码垛状态")]
public int PalletizState { get; set; }
///
/// 装箱规则
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false, ColumnDescription = "装箱规则")]
public string BoxRule { get; set; }
///
/// 托盘任务
///
[SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "托盘任务")]
public int TaskNum { get; set; }
///
/// 装箱规则id
///
[SugarColumn(ColumnDataType = "bigint", IsNullable = false, ColumnDescription = "装箱规则id")]
public long BoxRuleId { get; set; }
///
/// Count
///
[SugarColumn(ColumnDataType = "int", IsNullable = false)]
public int Count { get; set; }
///
/// IsControlpanel
///
[SugarColumn(ColumnDataType = "bit", IsNullable = false)]
public bool IsControlpanel { get; set; }
///
/// GoodsType
///
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
public int? GoodsType { get; set; }
}
}