| | |
| | | package com.ruoyi.common.core.domain.model;
|
| | |
|
| | | import lombok.*;
|
| | | import lombok.experimental.Accessors;
|
| | |
|
| | | /**
|
| | | * 用户登录对象
|
| | | *
|
| | | * @author ruoyi
|
| | | */
|
| | |
|
| | | @Data
|
| | | @NoArgsConstructor
|
| | | @Accessors(chain = true)
|
| | | public class LoginBody
|
| | | {
|
| | | /**
|
| | |
| | | */
|
| | | 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;
|
| | | }
|
| | | }
|