f1d252e9dbeb79ef134a338f953826099c841ce6.svn-base 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package org.jeecg.modules.system.model;
  2. import io.swagger.annotations.ApiModel;
  3. import io.swagger.annotations.ApiModelProperty;
  4. /**
  5. * 登录表单
  6. *
  7. * @Author scott
  8. * @since 2019-01-18
  9. */
  10. @ApiModel(value="登录对象", description="登录对象")
  11. public class SysLoginModel {
  12. @ApiModelProperty(value = "账号")
  13. private String username;
  14. @ApiModelProperty(value = "密码")
  15. private String password;
  16. @ApiModelProperty(value = "验证码")
  17. private String captcha;
  18. @ApiModelProperty(value = "验证码key")
  19. private String checkKey;
  20. public String getUsername() {
  21. return username;
  22. }
  23. public void setUsername(String username) {
  24. this.username = username;
  25. }
  26. public String getPassword() {
  27. return password;
  28. }
  29. public void setPassword(String password) {
  30. this.password = password;
  31. }
  32. public String getCaptcha() {
  33. return captcha;
  34. }
  35. public void setCaptcha(String captcha) {
  36. this.captcha = captcha;
  37. }
  38. public String getCheckKey() {
  39. return checkKey;
  40. }
  41. public void setCheckKey(String checkKey) {
  42. this.checkKey = checkKey;
  43. }
  44. }