LoginBody.java 962 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package com.ruoyi.auth.form;
  2. /**
  3. * 用户登录对象
  4. *
  5. * @author ruoyi
  6. */
  7. public class LoginBody
  8. {
  9. /**
  10. * 用户名
  11. */
  12. private String username;
  13. /**
  14. * 用户密码
  15. */
  16. private String password;
  17. /**
  18. * 验证码
  19. */
  20. private String code;
  21. /**
  22. * 唯一标识
  23. */
  24. private String uuid = "";
  25. public String getUsername()
  26. {
  27. return username;
  28. }
  29. public void setUsername(String username)
  30. {
  31. this.username = username;
  32. }
  33. public String getPassword()
  34. {
  35. return password;
  36. }
  37. public void setPassword(String password)
  38. {
  39. this.password = password;
  40. }
  41. public String getCode()
  42. {
  43. return code;
  44. }
  45. public void setCode(String code)
  46. {
  47. this.code = code;
  48. }
  49. public String getUuid()
  50. {
  51. return uuid;
  52. }
  53. public void setUuid(String uuid)
  54. {
  55. this.uuid = uuid;
  56. }
  57. }