using System;
using System.Collections.Generic;
using SqlSugar;
using WMS.BZModels;
namespace wms.sqlsugar.model.pt
{
[Tenant("pt")]
[SugarTable("Bill_Mesmiddle")]
public class BillMesmiddle : BaseModel
{
///
/// 单号
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
public string BillCode { get; set; }
///
/// 炉号
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
public string BoilerNo { get; set; }
///
/// 物料编码
///
[SugarColumn(ColumnDataType = "nvarchar", IsNullable = false)]
public string MatCode { get; set; }
///
/// 包号
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
public string PackNo { get; set; }
///
/// 材料号
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
public string MatBarCode { get; set; }
///
/// 仓库编码
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
public string WareCode { get; set; }
///
/// 状态
///
[SugarColumn(ColumnDataType = "int", IsNullable = false)]
public int State { get; set; }
///
/// 更新次数
///
[SugarColumn(ColumnDataType = "int", IsNullable = false)]
public int Count { get; set; }
}
}