保誠-保戶業務員媒合平台
wayne
2021-12-17 4400820b75440188f463f87e0b91564b88b512b4
pamapi/src/main/java/com/pollex/pam/service/dto/SendSMSResponse.java
比對新檔案
@@ -0,0 +1,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 + '\'' +
            '}';
    }
}