io.github.silencelwy.smsapi.vo.ArriveInfoResVo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jf-sms-send-sdk Show documentation
Show all versions of jf-sms-send-sdk Show documentation
a tool about send short message
package io.github.silencelwy.smsapi.vo;
import java.io.Serializable;
public class ArriveInfoResVo implements Serializable {
private String msgId;
private String arrive;
private String tel;
public String getMsgId() {
return msgId;
}
public void setMsgId(String msgId) {
this.msgId = msgId;
}
public String getArrive() {
return arrive;
}
public void setArrive(String arrive) {
this.arrive = arrive;
}
public String getTel() {
return tel;
}
public void setTel(String tel) {
this.tel = tel;
}
}