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;
|
}
|
}
|