using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace wms.sqlsugar.model.fj
{
[Tenant("fj")]
[SugarTable("bill_wet_stamp", "湿拉跺型主表")]
public class fjBillWetStack : BaseModel
{
///
/// 跺型编码
///
[SugarColumn(ColumnName = "code", ColumnDataType = "nvarchar", Length = 50)]
public string Code { get; set; }
///
/// 跺型名称
///
[SugarColumn(ColumnName = "name", ColumnDataType = "nvarchar", Length = 100)]
public string Name { get; set; }
///
/// 帘线物料编码
///
[SugarColumn(ColumnName = "pro_mater_code", ColumnDataType = "nvarchar", Length = 50)]
public string ProMaterCode { get; set; }
///
/// BOM编码
///
[SugarColumn(ColumnName = "bom_code", ColumnDataType = "nvarchar", Length = 50)]
public string BomCode { get; set; }
///
/// 容器类型
///
[SugarColumn(ColumnName = "container_type", ColumnDataType = "nvarchar", Length = 50)]
public string ContainerType { get; set; }
///
/// 工字轮总数
///
[SugarColumn(ColumnName = "hw_count")]
public int HWCount { get; set; }
///
/// 总层数
///
[SugarColumn(ColumnName = "layer_tol")]
public int LayerTol { get; set; }
///
/// 行停用
///
[SugarColumn(ColumnName = "row_stop")]
public int RowStop { get; set; }
}
}