杨前锦
2025-06-04 d44e3abf0d51cfea1ed7df510974d69458cf516d
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
using HH.WCS.Mobox3.HD.models;
using SqlSugar;
using System;
using System.Reflection.Emit;
 
namespace HH.WCS.Mobox3.HD
{
 
    //CntrItemRel
    [SugarTable("TN_CG_Detail")]
    public class CntrItemRel : BaseModel
    {
        [SugarColumn(IsPrimaryKey = true)]
        public string S_CNTR_CODE { get; set; } // ÈÝÆ÷±àÂë
        public string S_ITEM_CODE { get; set; }  // »õÆ·±àÂë
        public string S_ITEM_NAME { get; set; } = ""; // »õÆ·Ãû³Æ
        public string S_ITEM_SPEC { get; set; }    // »õÆ·¹æ¸ñ
        public string S_ITEM_STATE { get; set; } = "ºÏ¸ñ"; // »õƷ״̬
        /// <summary>
        /// 1£ººÏ¸ñ 2£º²»ºÏ¸ñ 
        /// </summary>
        public int N_ITEM_STATE { get; set; }
        public string S_BATCH_NO { get; set; } = "";
        public float F_QTY { get; set; }        // ÊýÁ¿
        public float F_WEIGHT { get; set; }        // ÖØÁ¿
        public string S_PUTAWAY_NO { get; set; } // ¹©Ó¦É̱àºÅ
 
        // -------------------------------  ¹þµçÊôÐÔ ------------------------------------
 
        public string S_ITEM_TYPE { get; set; }        // »õÆ·ÀàÐÍ  °ë³ÉÆ·¡¢³ÉÆ·¡¢¸Ö¾í ¡¢¿ÕÅ̶â
        public string S_WORK_NO { get; set; }        // ¹¤×÷ºÅ
        public string S_WORK_NAME { get; set; }        // ¹¤×÷Ãû³Æ
        public string S_DEPART_NO { get; set; }        // ²¿Ì׺Å
        public string S_PART_TASK_ID { 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_COIL_NO { get; set; }    // ¸Ö¾íºÅ
        public string S_HEAT_NO { get; set; }        // Â¯ºÅ
        public string S_TEXTURE { get; set; }        // ²ÄÖÊ
        public string S_SHOOT_NO { get; set; }        // ÅƺÅ
        public string S_PHYSICAL_NO { get; set; }        // Ìå¼ìºÅ
        public string S_WIDTH { get; set; }        // ¿í¶È
        public float F_INIT_WEIGHT { get; set; }        // ³õÊ¼ÖØÁ¿
        public string S_STEEL_DESC { get; set; }        // ¸Ö¾íÃèÊö
        public string T_IN_STOCK { get; set; }        // Èë¿âʱ¼ä
        public int ISFIND { get; set; }        // ÊÇ·ñÔÚ¿â 1.ÔÚ¿â 2.²»ÔÚ¿â
 
 
       
    }
}