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
package com.best.javaSdk.kdCancelOrderNotify.response;
 
import com.best.javaSdk.BaseResponse;
 
 
public class KdCancelOrderNotifyRsp implements BaseResponse {
    private boolean result;
    private String remark;
    private String errorCode;
    private String errorDescription;
 
    public boolean getResult()
    {
        return this.result;
    }
 
    public void setResult(boolean value)
    {
        this.result = value;
    }
 
    public String getRemark()
    {
        return this.remark;
    }
 
    public void setRemark(String value)
    {
        this.remark = 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;
    }
 
 
}