保誠-保戶業務員媒合平台
wayne
2022-01-26 6fa4bba623713c396432ba8b863846883d6a1906
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
package com.pollex.pam.service.dto;
 
import com.fasterxml.jackson.annotation.JsonProperty;
 
public class SendSMSResponse {
 
    @JsonProperty("p_key")
    private String pKey;
 
    @JsonProperty("return_code")
    private String returnCode;
 
    @JsonProperty("msg_batchNo")
    private String msgBatchNo;
 
    @JsonProperty("error_msg")
    private String errorMsg;
 
    public String getpKey() {
        return pKey;
    }
 
    public void setpKey(String pKey) {
        this.pKey = pKey;
    }
 
    public String getReturnCode() {
        return returnCode;
    }
 
    public void setReturnCode(String returnCode) {
        this.returnCode = returnCode;
    }
 
    public String getMsgBatchNo() {
        return msgBatchNo;
    }
 
    public void setMsgBatchNo(String msgBatchNo) {
        this.msgBatchNo = msgBatchNo;
    }
 
    public String getErrorMsg() {
        return errorMsg;
    }
 
    public void setErrorMsg(String errorMsg) {
        this.errorMsg = errorMsg;
    }
 
    @Override
    public String toString() {
        return "SendSMSResponse{" +
            "pKey='" + pKey + '\'' +
            ", returnCode='" + returnCode + '\'' +
            ", msgBatchNo='" + msgBatchNo + '\'' +
            ", errorMsg='" + errorMsg + '\'' +
            '}';
    }
}