jinxin
2025-06-04 174aa37fc0553ac80c9c2ae17b919ded10b8bae4
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
69
70
71
72
73
74
75
76
77
78
using HH.WCS.Mobox3.YNJuXing.models;
using SqlSugar;
using System;
 
namespace HH.WCS.Mobox3.YNJuXing
{
 
    //CntrItemRel
    [SugarTable("TN_CG_Detail")]
    public class CntrItemRel : BaseModel
    {
        //public string S_CG_ID { get; set; }
        /// <summary>
        /// ²úÆ·ÐòÁкÅ
        /// </summary>
        public string S_SERIAL_NO { 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>
        /// ÊÇ·ñ±¸»õ
        /// </summary>
        public string S_EXT_ATTR1 { get; set; } = "N";
        /// <summary>
        /// 1£ººÏ¸ñ 2£º²»ºÏ¸ñ 
        /// </summary>
        public int N_ITEM_STATE { get; set; }
        public string S_BATCH_NO { get; set; }
        public string S_END_USER { get; set; } = "";
        /// <summary>
        /// »õÖ÷
        /// </summary>
        public string S_OWNER { get; set; }
        public string S_SUPPLIER_NO { get; set; }
        /// <summary>
        /// ³¤¶È
        /// </summary>
        public float F_QTY { get; set; }
        /// <summary>
        /// ×ܳ¤¶È
        /// </summary>
        public float F_MAX_QTY { get; set; } = 4;
        public string S_UOM { get; set; } = "kg";
        public string S_CNTR_CODE { get; set; }
        public int N_BS_ROW_NO { get; set; }
        public string S_BS_TYPE { get; set; } = "";
        public string S_BS_NO { get; set; }
        public float F_NET_WEIGHT { get; set; }
        public float F_GROSS_WEIGHT { get; set; }
        public string S_WU { get; set; } = "";
        /// <summary>
        /// ·ÖÅäÁ¿,±»ÆäËü
        /// </summary>
        public float F_ALLOC_QTY { get; set; }
        /// <summary>
        /// ÊÇ·ñ¶³½á
        /// </summary>
        public string S_EXT_ATTR2 { get; set; } = "N";
        public string C_ITEM_MERGE { get; set; } = "N";
        /// <summary>
        /// ¿â´æµØµã
        /// </summary>
        public string S_ERP_WH_CODE { get; set; }
 
        /// <summary>
        /// ÊÇ·ñÔÝ´æ
        /// </summary>
        public string S_EXT_ATTR3 { get; set; } = "N";
 
        /// <summary>
        /// ·´ÏòÓ³Éä
        /// </summary>
        [SugarColumn(IsIgnore = true)]
        [Navigate(NavigateType.OneToOne, nameof(S_CNTR_CODE), nameof(Container.S_CODE))]
        public Container Cntr { get; set; }
    }
}