bfd6b61a2e4ca2561031dddcc67fde3ee4df3996.svn-base 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package cn.com.goldenwater.dcproj.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import java.io.Serializable;
  4. public class LoginDto implements Serializable {
  5. @ApiModelProperty("手机号")
  6. private String phone;
  7. @ApiModelProperty("手机短信验证码")
  8. private String code;
  9. @ApiModelProperty("图片验证码Id")
  10. private String imgCodeId;
  11. @ApiModelProperty("密码")
  12. private String pwd;
  13. @ApiModelProperty("图片验证码")
  14. private String imgCode;
  15. public String getPhone() {
  16. return phone;
  17. }
  18. public void setPhone(String phone) {
  19. this.phone = phone;
  20. }
  21. public String getCode() {
  22. return code;
  23. }
  24. public void setCode(String code) {
  25. this.code = code;
  26. }
  27. public String getPwd() {
  28. return pwd;
  29. }
  30. public void setPwd(String pwd) {
  31. this.pwd = pwd;
  32. }
  33. public String getImgCodeId() {
  34. return imgCodeId;
  35. }
  36. public void setImgCodeId(String imgCodeId) {
  37. this.imgCodeId = imgCodeId;
  38. }
  39. public String getImgCode() {
  40. return imgCode;
  41. }
  42. public void setImgCode(String imgCode) {
  43. this.imgCode = imgCode;
  44. }
  45. }