| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- package com.ruoyi.auth.form;
- /**
- * 用户登录对象
- *
- * @author ruoyi
- */
- public class LoginBody
- {
- /**
- * 用户名
- */
- private String username;
- /**
- * 用户密码
- */
- private String password;
- /**
- * 验证码
- */
- private String code;
- /**
- * 唯一标识
- */
- private String uuid = "";
- 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 getUuid()
- {
- return uuid;
- }
- public void setUuid(String uuid)
- {
- this.uuid = uuid;
- }
- }
|