using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace wms.sqlsugar.model.pt
{
[Tenant("pt")]
[SugarTable("Bill_BomSetInfo")]
public partial class ptBillBomsetinfo : BaseModel
{
///
/// WarehouseId
///
[SugarColumn(ColumnDataType = "bigint", IsNullable = true)]
public long? WarehouseId { get; set; }
///
/// BomSetHdrId
///
[SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
public long BomSetHdrId { get; set; }
///
/// IsStop
///
[SugarColumn(ColumnDataType = "int", IsNullable = false)]
public int IsStop { get; set; }
///
/// IsEmpty
///
[SugarColumn(ColumnDataType = "int", IsNullable = false)]
public int IsEmpty { get; set; }
///
/// ClBarCode
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
public string ClBarCode { get; set; }
///
/// XYNo
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
public string XYNo { get; set; }
///
/// MatId
///
[SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
public long MatId { get; set; }
///
/// SideNum
///
[SugarColumn(ColumnDataType = "int", IsNullable = false)]
public int SideNum { get; set; }
///
/// SilkType
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
public string SilkType { get; set; }
///
/// SilkDiam
///
[SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = false)]
public decimal SilkDiam { get; set; }
///
/// IsCore
///
[SugarColumn(ColumnDataType = "int", IsNullable = false)]
public int IsCore { get; set; }
///
/// Default1
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
public string Default1 { get; set; }
///
/// Default2
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
public string Default2 { get; set; }
///
/// Default3
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
public string Default3 { get; set; }
}
}