LoginBody.java 906 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package com.boman.auth.form;
  2. /**
  3. * 用户登录对象
  4. *
  5. * @author ruoyi
  6. */
  7. public class LoginBody {
  8. /**
  9. * 用户名
  10. */
  11. private String username;
  12. /**
  13. * 用户密码
  14. */
  15. private String password;
  16. private String code;
  17. private String logintype;
  18. public String getUsername()
  19. {
  20. return username;
  21. }
  22. public void setUsername(String username)
  23. {
  24. this.username = username;
  25. }
  26. public String getPassword()
  27. {
  28. return password;
  29. }
  30. public void setPassword(String password)
  31. {
  32. this.password = password;
  33. }
  34. public String getCode() {
  35. return code;
  36. }
  37. public void setCode(String code) {
  38. this.code = code;
  39. }
  40. public String getLogintype() {
  41. return logintype;
  42. }
  43. public void setLogintype(String logintype) {
  44. this.logintype = logintype;
  45. }
  46. }