using System;
using System.Collections.Generic;
using SqlSugar;
using WMS.BZModels;
namespace wms.sqlsugar.model.fj
{
[Tenant("fj")]
[SugarTable("Bill_BomInfo")]
public partial class BillBominfo : BaseModel
{
///
/// 是否停用
///
[SugarColumn(ColumnDataType = "int", IsNullable = false)]
public int IsStop { get; set; }
///
/// 编码
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
public string Code { get; set; }
///
///
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = false)]
public string ProCode { get; set; }
///
/// 名称
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)]
public string Name { get; set; }
///
/// 湿拉物料id
///
[SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
public long MatId { get; set; }
///
/// 湿拉物料编码
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
public string MatCode { get; set; }
///
/// 工字轮配比
///
[SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = false)]
public decimal HWCountQty { get; set; }
///
/// 帘线物料编码
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
public string ProMatCode { get; set; }
///
/// IsDelete
///
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
public int? IsDelete { get; set; }
}
}