package com.ishop.mobile.pojo;
|
|
import com.walker.web.param.ParamRequest;
|
|
public class SmsCodeParam extends ParamRequest {
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
|
public String getUuid() {
|
return uuid;
|
}
|
|
public void setUuid(String uuid) {
|
this.uuid = uuid;
|
}
|
|
/**
|
* 上一步拼图验证码的 x 位置,需要重新验证,防止短信接口攻击。
|
* @return
|
* @date 2023-06-28
|
*/
|
public String getX() {
|
return x;
|
}
|
|
public void setX(String x) {
|
this.x = x;
|
}
|
|
private String uuid;
|
private String x;
|
|
private String phone;
|
|
@Override
|
public String toString() {
|
return "SmsCodeParam{" +
|
"uuid='" + uuid + '\'' +
|
", x='" + x + '\'' +
|
", phone='" + phone + '\'' +
|
'}';
|
}
|
}
|