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
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
112
113
114
115
116
117
118
119
120
package com.best.javaSdk.kdCreateWaybillOrderPdfNotify.response;
 
import com.best.javaSdk.kdCreateWaybillOrderPdfNotify.response.ChildMailNo;
import java.util.List;
import com.best.javaSdk.BaseResponse;
 
 
public class KdCreateWaybillOrderPdfNotifyRsp implements BaseResponse {
    private ChildMailNo childMailNo;
    private boolean result;
    private String txLogisticId;
    private String mailNo;
    private String errorCode;
    private String errorDescription;
    private String pdfStream;
    private String triSortCode;
    private List<String> pdfStreamList;
    private String packRule;
 
    public ChildMailNo getChildMailNo()
    {
        return this.childMailNo;
    }
 
    public void setChildMailNo(ChildMailNo value)
    {
        this.childMailNo = value;
    }
 
    public boolean getResult()
    {
        return this.result;
    }
 
    public void setResult(boolean value)
    {
        this.result = value;
    }
 
    public String getTxLogisticId()
    {
        return this.txLogisticId;
    }
 
    public void setTxLogisticId(String value)
    {
        this.txLogisticId = value;
    }
 
    public String getMailNo()
    {
        return this.mailNo;
    }
 
    public void setMailNo(String value)
    {
        this.mailNo = value;
    }
 
    public String getErrorCode()
    {
        return this.errorCode;
    }
 
    public void setErrorCode(String value)
    {
        this.errorCode = value;
    }
 
    public String getErrorDescription()
    {
        return this.errorDescription;
    }
 
    public void setErrorDescription(String value)
    {
        this.errorDescription = value;
    }
 
    public String getPdfStream()
    {
        return this.pdfStream;
    }
 
    public void setPdfStream(String value)
    {
        this.pdfStream = value;
    }
 
    public String getTriSortCode()
    {
        return this.triSortCode;
    }
 
    public void setTriSortCode(String value)
    {
        this.triSortCode = value;
    }
 
    public List<String>  getPdfStreamList()
    {
        return this.pdfStreamList;
    }
 
    public void setPdfStreamList(List<String>  value)
    {
        this.pdfStreamList = value;
    }
    public String getPackRule()
    {
        return this.packRule;
    }
 
    public void setPackRule(String value)
    {
        this.packRule = value;
    }
 
 
}