KKSU
2024-11-21 80fd9e3da4b45285c29cdb380ce743202b0c2af4
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
package com.best.javaSdk.kdCreateWaybillOrderNotify.request;
 
 
 
public class Item {
    private long itemCount;
    private long itemWeight;
    private long itemLength;
    private long itemWidth;
    private long itemHeight;
    private String itemName;
 
    public long getItemCount()
    {
        return this.itemCount;
    }
 
    public void setItemCount(long value)
    {
        this.itemCount = value;
    }
 
    public long getItemWeight()
    {
        return this.itemWeight;
    }
 
    public void setItemWeight(long value)
    {
        this.itemWeight = value;
    }
 
    public long getItemLength()
    {
        return this.itemLength;
    }
 
    public void setItemLength(long value)
    {
        this.itemLength = value;
    }
 
    public long getItemWidth()
    {
        return this.itemWidth;
    }
 
    public void setItemWidth(long value)
    {
        this.itemWidth = value;
    }
 
    public long getItemHeight()
    {
        return this.itemHeight;
    }
 
    public void setItemHeight(long value)
    {
        this.itemHeight = value;
    }
 
    public String getItemName()
    {
        return this.itemName;
    }
 
    public void setItemName(String value)
    {
        this.itemName = value;
    }
 
 
}