123456789101112131415161718192021222324252627282930313233 |
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace wms.sqlsugar.model.fj
- {
- [Tenant("fj")]
- [SugarTable("bill_bom_info", "BOM信息表")]
- public class fjBillBomInfo : BaseModel
- {
- /// <summary>
- /// BOM编码
- /// </summary>
- [SugarColumn(ColumnName = "bom_code", ColumnDataType = "nvarchar", Length = 50)]
- public string BomCode { get; set; }
- /// <summary>
- /// 帘线物料编码
- /// </summary>
- [SugarColumn(ColumnName = "pro_mat_code", ColumnDataType = "nvarchar", Length = 50)]
- public string ProMatCode { get; set; }
- /// <summary>
- /// 湿拉物料编码
- /// </summary>
- [SugarColumn(ColumnName = "mater_code", ColumnDataType = "nvarchar", Length = 100)]
- public string MaterCode { get; set; }
- /// <summary>
- /// 轮子个数
- /// </summary>
- [SugarColumn(ColumnName = "hw_count")]
- public int HWCount { get; set; }
- }
- }
|