zyf
2025-05-28 47d3c9e31edd16c02e3c74ff45e9772f9ca550b2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace MES.Service.Modes
{
    /// <summary>
    /// 
    ///</summary>
    [SugarTable("MES_BOM_DETAIL2")]
    public class MesBomDetail2
    {
        /// <summary>
        ///  
        ///</summary>
         [SugarColumn(ColumnName = "ERPID", IsPrimaryKey = true)]
         public decimal? Erpid { get; set; }
        /// <summary>
        ///  
        ///</summary>
         [SugarColumn(ColumnName="ERPHID"    )]
         public decimal? Erphid { get; set; }
        /// <summary>
        /// 阶梯用量-启始数量 
        ///</summary>
         [SugarColumn(ColumnName="FSTARTQTY"    )]
         public decimal? Fstartqty { get; set; }
        /// <summary>
        /// 阶梯用量-截止数量 
        ///</summary>
         [SugarColumn(ColumnName="FENDQTY"    )]
         public decimal? Fendqty { get; set; }
        /// <summary>
        /// 子项单位 
        ///</summary>
         [SugarColumn(ColumnName="FUNITIDLOT"    )]
         public string Funitidlot { get; set; }
        /// <summary>
        /// 固定损耗 
        ///</summary>
         [SugarColumn(ColumnName="FFIXSCRAPQTYLOT"    )]
         public decimal? Ffixscrapqtylot { get; set; }
        /// <summary>
        /// 变动损耗率 
        ///</summary>
         [SugarColumn(ColumnName="FSCRAPRATELOT"    )]
         public decimal Fscrapratelot { get; set; }
        /// <summary>
        /// 用量:分子 
        ///</summary>
         [SugarColumn(ColumnName="FNUMERATORLOT"    )]
         public long? Fnumeratorlot { get; set; }
        /// <summary>
        /// 用量:分母 
        ///</summary>
         [SugarColumn(ColumnName="FDENOMINATORLOT"    )]
         public long? Fdenominatorlot { get; set; }
        /// <summary>
        /// 子项物料编码 
        ///</summary>
         [SugarColumn(ColumnName="FMATERIALIDLOTBASED"    )]
         public string Fmaterialidlotbased { get; set; }
        /// <summary>
        /// 序号 
        ///</summary>
         [SugarColumn(ColumnName="LINE_NUMBER"    )]
         public decimal LineNumber { get; set; }
    }
}