| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package com.uas.sso.entity.register;
- /**
- * 通过短信验证注册手机号
- *
- * @author wangmh
- * @create 2018-10-29 13:49
- **/
- public class SmsPersonalRegister extends BaseRegisterLogin {
- /**
- * 手机号
- */
- private String mobile;
- /**
- * 验证码
- */
- private String code;
- /**
- * 验证码token,用于校验验证码是否正确
- */
- private String token;
- public String getMobile() {
- return mobile;
- }
- public void setMobile(String mobile) {
- this.mobile = mobile;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getToken() {
- return token;
- }
- public void setToken(String token) {
- this.token = token;
- }
- }
|