| | |
| | | package com.ruoyi.common.core.domain.model;
|
| | |
|
| | | import lombok.*;
|
| | | import io.swagger.annotations.ApiModel;
|
| | | import io.swagger.annotations.ApiModelProperty;
|
| | | import lombok.Data;
|
| | | import lombok.experimental.Accessors;
|
| | |
|
| | | /**
|
| | | * 用户登录对象
|
| | | * |
| | | * @author ruoyi
|
| | | *
|
| | | * @author Lion Li
|
| | | */
|
| | |
|
| | | @Data
|
| | | @NoArgsConstructor
|
| | | @Accessors(chain = true)
|
| | | public class LoginBody
|
| | | {
|
| | | @ApiModel("用户登录对象")
|
| | | public class LoginBody {
|
| | |
|
| | | /**
|
| | | * 用户名
|
| | | */
|
| | | @ApiModelProperty(value = "用户名")
|
| | | private String username;
|
| | |
|
| | | /**
|
| | | * 用户密码
|
| | | */
|
| | | @ApiModelProperty(value = "用户密码")
|
| | | private String password;
|
| | |
|
| | | /**
|
| | | * 验证码
|
| | | */
|
| | | @ApiModelProperty(value = "验证码")
|
| | | private String code;
|
| | |
|
| | | /**
|
| | | * 唯一标识
|
| | | */
|
| | | @ApiModelProperty(value = "唯一标识")
|
| | | private String uuid = "";
|
| | |
|
| | | }
|