using System;
using System.Collections.Generic;
using SqlSugar;
using WMS.BZModels;
namespace wms.sqlsugar.model.fj
{
///
/// 码垛工字轮信息
///
[Tenant("fj")]
[SugarTable("Bill_SpoolTrans")]
public class BillSpooltrans : BaseModel
{
///
/// 工字轮条码
///
[SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = false , ColumnDescription ="工字轮条码")]
public string ConBarCode { get; set; }
///
/// 分拣库仓库编码
///
[SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = true , ColumnDescription ="分拣库仓库编码")]
public string WarehouseCode { get; set; }
///
/// 分拣库序号
///
[SugarColumn(ColumnDataType ="int" , IsNullable = true , ColumnDescription ="分拣库序号")]
public int? WarehouseSort { get; set; }
///
/// 南北向
///
[SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = true , ColumnDescription ="南北向")]
public string Direct { get; set; }
///
/// 输送线号
///
[SugarColumn(ColumnDataType ="int" , IsNullable = true , ColumnDescription ="输送线号")]
public int? ConveyorSort { get; set; }
///
/// 位置序号
///
[SugarColumn(ColumnDataType ="int" , IsNullable = true , ColumnDescription ="位置序号")]
public int? LocSort { get; set; }
///
/// 湿拉物料编码
///
[SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = true , ColumnDescription ="湿拉物料编码")]
public string MatCode { get; set; }
///
/// 异常盘类型
///
[SugarColumn(ColumnDataType ="int" , IsNullable = true , ColumnDescription ="异常盘类型")]
public int? ErrType { get; set; }
///
/// 异常盘信息
///
[SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = true , ColumnDescription ="异常盘信息")]
public string ErrMsg { get; set; }
///
/// 湿拉工序订单号
///
[SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = true , ColumnDescription ="湿拉工序订单号")]
public string BillCode { get; set; }
///
/// 生产订单号
///
[SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = true , ColumnDescription ="生产订单号")]
public string WorkOrder { get; set; }
}
}