hudong
2025-05-09 56138493c172bcc34e5dd362067764cde8c520c1
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
using HH.WCS.Mobox3.pinggao.models;
using SqlSugar;
using System;
 
namespace HH.WCS.Mobox3.pinggao
{
    [SugarTable("TN_Material")]
    public class TN_Material : 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; } = "N";
        public string S_CONTROL { get; set; } = "N";
        public string S_BOM_TYPE { get; set; } = "N";
        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; } = "N";
        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 S_GCBM { get; set; }
 
        // ÎïÁÏ×é
        public string S_WLZBM { get; set; }
 
        // ÎïÁÏ×éÃèÊö
        public string S_WLZMS { get; set; }
 
        // ÎïÁÏÀàÐÍ
        public string S_WLLX { get; set; }
 
        // ÎïÁÏÃèÊö
        public string S_WLMS { get; set; }
 
        // Îı¾ÐÐ
        public string S_WLCMS { get; set; }
 
        // »ù±¾¼ÆÁ¿µ¥Î»
        public string S_DWBM { get; set; }
 
        // ¶ÈÁ¿µ¥Î»ÎÄ
        public string S_DWMS { get; set; }
 
        // ¾ÉÎïÁϺÅ
        public string S_JBM { get; set; }
 
        // ²úÆ·×é
        public string S_CPZ { get; set; }
 
        // ²úÆ·×éÃû³Æ
        public string S_CPZMS { get; set; }
        //public string S_IS_MANAGE { get; set; }
        //public string S_IS_MANAGEDATE { get; set; }
        //public string S_AREA_CODE { get; set; } = "";
    }
}