新框架PDA后端(祈禧6月初版本)
南骏 池
3 天以前 fca0719af6948fe8fa1e4f094f8e7dba339c7428
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
using Newtonsoft.Json;
 
namespace NewPdaSqlServer.Dto.Xky
{
    public class XkyBarcodeDataDto
    {
        [JsonProperty("poErpNo")]
        public string PoErpNo { get; set; }
 
        [JsonProperty("poLineNo")]
        public string PoLineNo { get; set; }
 
        [JsonProperty("productCode")]
        public string ProductCode { get; set; }
 
        [JsonProperty("productName")]
        public string ProductName { get; set; }
 
        [JsonProperty("productScale")]
        public string ProductScale { get; set; }
 
        [JsonProperty("smallBarcode")]
        public string SmallBarcode { get; set; }
 
        [JsonProperty("bigBarcode")]
        public string BigBarcode { get; set; }
 
        [JsonProperty("outerBarcode")]
        public string OuterBarcode { get; set; }
 
        [JsonProperty("includeQty")]
        public int IncludeQty { get; set; }
 
        [JsonProperty("smallPackageLength")]
        public int? SmallPackageLength { get; set; }
 
        [JsonProperty("smallPackageWidth")]
        public int? SmallPackageWidth { get; set; }
 
        [JsonProperty("smallPackageHeight")]
        public int? SmallPackageHeight { get; set; }
 
        [JsonProperty("bigPackageLength")]
        public int? BigPackageLength { get; set; }
 
        [JsonProperty("bigPackageWidth")]
        public int? BigPackageWidth { get; set; }
 
        [JsonProperty("bigPackageHeight")]
        public int? BigPackageHeight { get; set; }
 
        [JsonProperty("outerPackageLength")]
        public int? OuterPackageLength { get; set; }
 
        [JsonProperty("outerPackageWidth")]
        public int? OuterPackageWidth { get; set; }
 
        [JsonProperty("outerPackageHeight")]
        public int? OuterPackageHeight { get; set; }
 
        [JsonProperty("smallPackageSn")]
        public string SmallPackageSn { get; set; }
 
        [JsonProperty("bigPackageSn")]
        public string BigPackageSn { get; set; }
 
        [JsonProperty("outerPackageSn")]
        public string OuterPackageSn { get; set; }
 
        [JsonProperty("dnLines")]
        public string DnLines { get; set; }
 
        [JsonProperty("dynamicData")]
        public XkyDynamicDataDto DynamicData { get; set; }
 
        [JsonProperty("createType")]
        public int CreateType { get; set; }
 
        [JsonProperty("packLevel")]
        public int PackLevel { get; set; }
    }
 
    public class XkyDynamicDataDto
    {
        [JsonProperty("poErpNo")]
        public string PoErpNo { get; set; }
 
        [JsonProperty("poLineNo")]
        public string PoLineNo { get; set; }
 
        [JsonProperty("innerVendorCode")]
        public string InnerVendorCode { get; set; }
 
        [JsonProperty("customize1")]
        public string Customize1 { get; set; }
 
        [JsonProperty("customize2")]
        public string Customize2 { get; set; } // ×¢Ò⣺JSONÖÐÕâÀïÊÇÊý×Ö1747584000000
 
        [JsonProperty("customize3")]
        public string Customize3 { get; set; }
    }
}