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
{
///
/// Id
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "Id")]
public int Id { get; set; }
///
/// 码垛层信息表Id
///
[SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="码垛层信息表Id")]
public int PalletizingLayerId { get; set; }
///
/// 是否空置
///
[SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否空置")]
public bool IsEmpty { get; set; }
///
/// 数量上限
///
[SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="数量上限")]
public int QtyMaxCount { get; set; }
///
/// 行号
///
[SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="行号")]
public int RowNo { get; set; }
///
/// 是否混合料行
///
[SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否混合料行")]
public bool IsMixRow { get; set; }
///
/// 任务Id
///
[SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="任务Id")]
public int CacheLineId { get; set; }
///
/// 当前所有的物料号
///
[SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="当前所有的物料号")]
public string MatCodeList { get; set; }
///
/// 是否结束
///
[SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否结束")]
public bool Finish { get; set; }
///
/// 取货线体号
///
[SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="取货线体号")]
public string LineCode { get; set; }
///
/// 创建时间
///
[SugarColumn(IsNullable = true, ColumnDescription = "创建时间")]
public DateTime AddTime { get; set; }
///
/// 编辑时间
///
[SugarColumn(IsNullable = true, ColumnDescription = "编辑时间")]
public DateTime EditTime { get; set; }
///
/// 仓库编号
///
[SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="仓库编号")]
public string WarehouseCode { get; set; }
}
}