12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package com.boman.auth.form;
- /**
- * 用户登录对象
- *
- * @author ruoyi
- */
- public class LoginBody {
- /**
- * 用户名
- */
- private String username;
- /**
- * 用户密码
- */
- private String password;
- private String code;
- private String logintype;
- public String getUsername()
- {
- return username;
- }
- public void setUsername(String username)
- {
- this.username = username;
- }
- public String getPassword()
- {
- return password;
- }
- public void setPassword(String password)
- {
- this.password = password;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getLogintype() {
- return logintype;
- }
- public void setLogintype(String logintype) {
- this.logintype = logintype;
- }
- }
|