hudong
4 天以前 3a3c5f5711a57439f34e772313fcbb18ba7885bc
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.Mobox3.pinggao.models
{
 
 
    [SugarTable("TN_Inbound_Details")]
 
    public class TN_Center_Inbound_Detail : BaseModel
    {
        public string S_IO_NO { get; set; }
        public string N_ROW_NO { get; set; }
        public string S_ITEM_CODE { get; set; }
        public int N_ITEM_STATE { get; set; }
        public string S_ITEM_NAME { get; set; }
        public string S_ITEM_STATE { get; set; }
        public string S_BATCH_NO { get; set; } = "";
        public string S_ITEM_SPEC { get; set; }
        public string S_SERIAL_NO { get; set; } = "";
        public string D_PRD_DATE { get; set; }
        public string D_EXP_DATE { get; set; }
        public string S_NOTE { get; set; }
        public double F_QTY { get; set; }
        public string S_UOM { get; set; } = "kg";
        public double F_ACC_C_QTY { get; set; }
        public double F_ACC_B_QTY { get; set; }
        public int N_B_STATE { get; set; }
        public string S_BS_NO { get; set; }
        public string S_BS_TYPE { get; set; }
        //public double F_NET_WEIGHT { get; set; }
        //public double F_GROSS_WEIGHT { get; set; }
        public string S_SUPPLIER_NO { get; set; }
        //public string S_WU { get; set; }
        ///// <summary>
        ///// 来源单行号
        ///// </summary>
        //public string N_BS_ROW_NO { get; set; }
        /// <summary>
        /// 货主
        /// </summary>
        public string S_OWNER { get; set; }
        /// <summary>
        /// ERP仓库
        /// </summary>
        public string S_ERP_WH_CODE { get; set; }
 
 
        // 库存地点
 
        public string S_KCDD { get; set; }
 
        // 检验批编号
 
        public string S_JYPBH { get; set; }
        public string S_KJPZSSRQ { get; set; }
 
        // 输入时间
 
        public DateTime T_SRSJ { get; set; }
 
        // 会计凭证日期
 
        public string S_KJPZSRRQ { get; set; }
 
        // 采购凭证号
 
        public string S_CGPZH { get; set; }
 
        // 采购凭证的项目编号
 
        public string S_CGPZXMBH { get; set; }
 
        // 借方/贷方标识
 
        public string S_JDBS { get; set; }
 
        // 参考凭证的凭证号
 
        public string S_CKPZH { get; set; }
 
        // 参考凭证会计年度
 
        public string S_CKPZKJND { get; set; }
        public string S_KJPZSRSJ { get; set; }
 
        // 参考凭证项目
 
        public string S_CKPZXM { get; set; }
 
        // 冲销物料凭证编号
 
        public string S_CXWLPZBH { get; set; }
        public string S_CXPZNF { get; set; }
        public string S_CXWLPZHXM { get; set; }
        public string S_HWSJJYZT { get; set; }
        public string S_GYSZHH { get; set; }
 
        public string S_PH { get; set; }
        public string S_TSKCBS { get; set; }
        public string S_XSDDXMBH { get; set; }
        public string S_DDH { get; set; }
        public string S_WBS { get; set; }
        public string S_XSDD { get; set; }
 
    }
}