using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace MES.Service.Modes { /// /// /// [SugarTable("MES_BOM_DETAIL2")] public class MesBomDetail2 { /// /// /// [SugarColumn(ColumnName = "ERPID", IsPrimaryKey = true)] public decimal? Erpid { get; set; } /// /// /// [SugarColumn(ColumnName="ERPHID" )] public decimal? Erphid { get; set; } /// /// 阶梯用量-启始数量 /// [SugarColumn(ColumnName="FSTARTQTY" )] public decimal? Fstartqty { get; set; } /// /// 阶梯用量-截止数量 /// [SugarColumn(ColumnName="FENDQTY" )] public decimal? Fendqty { get; set; } /// /// 子项单位 /// [SugarColumn(ColumnName="FUNITIDLOT" )] public string? Funitidlot { get; set; } /// /// 固定损耗 /// [SugarColumn(ColumnName="FFIXSCRAPQTYLOT" )] public decimal? Ffixscrapqtylot { get; set; } /// /// 变动损耗率 /// [SugarColumn(ColumnName="FSCRAPRATELOT" )] public decimal? Fscrapratelot { get; set; } /// /// 用量:分子 /// [SugarColumn(ColumnName="FNUMERATORLOT" )] public long? Fnumeratorlot { get; set; } /// /// 用量:分母 /// [SugarColumn(ColumnName="FDENOMINATORLOT" )] public long? Fdenominatorlot { get; set; } /// /// 子项物料编码 /// [SugarColumn(ColumnName="FMATERIALIDLOTBASED" )] public string? Fmaterialidlotbased { get; set; } /// /// 序号 /// [SugarColumn(ColumnName="LINE_NUMBER" )] public decimal? LineNumber { get; set; } } }