杨前锦
2025-05-26 d0a265713fd18162f3a82bdcd22e267df7298c7b
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
using HH.WCS.Mobox3.YNJT_BZP.models;
using SqlSugar;
using System;
 
namespace HH.WCS.Mobox3.YNJT_BZP
{
    [SugarTable("TN_Material")]
    public  class ItemInfo : BaseModel
    {
       
        public string S_ITEM_CODE { get; set; }
        public string S_ITEM_NAME { get; set; }
        public string S_MP_TYPE { get; set; }
        public Nullable<float> F_WEIGHT { get; set; }
        public string S_MATERIAL { get; set; }
        public string S_IDCODE { get; set; }
        public string S_SERIES { get; set; }
        public string S_STORE { get; set; }
        public string S_CONTROL { get; set; }
        public string S_BOM_TYPE { get; set; }
        public int N_BOM_MOD { get; set; }
        public DateTime? T_DBOM_UPDATE { get; set; }
        public DateTime? T_EBOM_UPDATE { get; set; }
        public DateTime? T_PBOM_UPDATE { get; set; }
        public string C_MULTI_ROUTE { get; set; }
        public string S_ROUTE_MAKE { get; set; }
        public string S_ROUTE_ASSEMBLY { get; set; }
        public string S_DMODE { get; set; }
        public string S_STATE_PRE { get; set; }
        public int N_REVIEW_RESULT { get; set; }
        public string Item_Spec { get; set; }
 
    }
}