杨前锦
2025-07-07 c8f338feee0b6003d8f069b1d37fd9b90dd1b7f4
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
using HH.WCS.Mobox3.HD.models;
using SqlSugar;
using System;
 
namespace HH.WCS.Mobox3.HD
{
    [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 N_TS_HEIGHT { get; set; }
        public string Item_Spec { get; set; }
 
 
        public string S_ITEM_TYPE { get; set; } // ÎïÁÏÀàÐÍ 1¡¢°ë³ÉÆ· 2¡¢³ÉÆ· 3¡¢Ä£¾ß 4¡¢¸Ö¾í
        public string S_WORK_NO { get; set; } // ¹¤×÷ºÅ
        public string S_DEPART_NO { get; set; } // ²¿Ì׺Å
        public int F_QTY { get; set; } // ÊýÁ¿
        public float F_INIT_QTY { get; set; } // ³õʼÊýÁ¿
 
        // -------------- ³ÉÆ·/°ë³ÉƷרÓÐ×ֶΠ----------------
        public string S_PARTDRAW_NO { get; set; } // Áã¼þͼºÅ
        public string S_PART_NAME { get; set; } // Áã¼þÃû³Æ
        public string S_OPER_NO { get; set; } // ¹¤Ðò±àºÅ
        public string S_OPER_NAME { get; set; } // ¹¤ÐòÃû³Æ
 
        // -------------- Ä£¾ßרÓÐ×ֶΠ----------------
        public string S_BATCH_NO { get; set; } // Åú´ÎºÅ ÓÃ;£ºÄ£¾ßÐòÁкÅ
        public string S_ITEM_STATE { get; set; } // »õƷ״̬  ¿ÉÓᢲ»¿ÉÓÃ
        public string S_GM_CODE { get; set; } // Í¨ÓÃÄ£¾ß±àºÅ
 
        // -------------- ¸Ö¾íרÓÐ×ֶΠ----------------
        public string S_STEELITEM_CODE { get; set; } // ¸Ö¾íÎïÁϱàÂë-X5ϵͳ»ñÈ¡
        public string S_HEAT_NO { get; set; } // Â¯ºÅ(·Ç±ØÌî)-Ô±¹¤×Ô¼ºÊäÈë
        public string S_SHOOT_NO { get; set; } //ÅÆºÅ-Ô±¹¤×Ô¼ºÊäÈë
        public string S_ITEM_SPEC { get; set; } // »õÆ·¹æ¸ñ  ÓÃ;£º´æ·Å¸Ö¾íµÄ¹æ¸ñÐͺŠ-X5ϵͳ»ñÈ¡
        public string S_PHYSICAL_NO { get; set; } // Ìå¼ìºÅ(·Ç±ØÌî)-Ô±¹¤×Ô¼ºÊäÈë
        public string S_GJ_SIZE { get; set; } // ¸Ö¾í³ß´ç
 
 
    }
}