SmsPersonalRegister.java 825 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package com.uas.sso.entity.register;
  2. /**
  3. * 通过短信验证注册手机号
  4. *
  5. * @author wangmh
  6. * @create 2018-10-29 13:49
  7. **/
  8. public class SmsPersonalRegister extends BaseRegisterLogin {
  9. /**
  10. * 手机号
  11. */
  12. private String mobile;
  13. /**
  14. * 验证码
  15. */
  16. private String code;
  17. /**
  18. * 验证码token,用于校验验证码是否正确
  19. */
  20. private String token;
  21. public String getMobile() {
  22. return mobile;
  23. }
  24. public void setMobile(String mobile) {
  25. this.mobile = mobile;
  26. }
  27. public String getCode() {
  28. return code;
  29. }
  30. public void setCode(String code) {
  31. this.code = code;
  32. }
  33. public String getToken() {
  34. return token;
  35. }
  36. public void setToken(String token) {
  37. this.token = token;
  38. }
  39. }