杨前锦
2025-06-11 e0d89637030791ce1e7dd46ca5fdec9979977960
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
using HH.WCS.Mobox3.YNJT_PT.models;
using SqlSugar;
using System;
 
namespace HH.WCS.Mobox3.YNJT_PT
{
 
    //CntrItemRel
    [SugarTable("TN_CG_Detail")]
    public class CntrItemRel : BaseModel
    {
        public string S_CG_ID { get; set; }  // ÌõÐÎÂë
        [SugarColumn(IsPrimaryKey = true)]
        public string S_CNTR_CODE { get; set; } // ÈÝÆ÷±àÂë
        public string S_ITEM_CODE { get; set; } // ÎïÁϱàÂë
        public string S_CELL_NO { get; set; } // ÉÌÆ·±àÂë
        public string S_ITEM_STATE { get; set; } = "OK";  // Öʼì״̬
        public float F_QTY { get; set; }    // ÊýÁ¿
        public string S_MCN { get; set; }  // »úÆ÷´úÂë
        public string S_OPR { get; set; } // ²Ù×÷Ô±id1
        public string S_OPR02 { get; set; } // ²Ù×÷Ô±id2
        public string S_OPR03 { get; set; } // ²Ù×÷Ô±id3
        public string S_OPR04 { get; set; } // ²Ù×÷Ô±id4
        public string S_WINDUP { get; set; } // windup
        public string S_TXNDATE { get; set; } // Éú²úʱ¼ä
        public string S_DATE_SHIFT { get; set; } // ×ª°àÈÕÆÚ
        public string S_EFFECTIVE_TIME { get; set; } // ÉúЧʱ¼ä
        public string S_EXPIRATION_TIME { get; set; } // Ê§Ð§Ê±¼ä
        public int  N_URGENT_FLAG { get; set; } = 0; // ¼Ó¼±±êʶ
 
    }
}