| 1234567891011121314151617181920 |
- package com.ctsi.Auth.entity;
- import io.swagger.annotations.ApiModelProperty;
- import io.swagger.annotations.ApiOperation;
- import lombok.Data;
- @ApiOperation(value = "用户登录")
- @Data
- public class UserForm {
- @ApiModelProperty(value = "用户名")
- private String userName;
- @ApiModelProperty(value = "密码")
- private String password;
- @ApiModelProperty(value = "验证码key")
- private String captchaKey;
- @ApiModelProperty(value = "验证码")
- private String captcha;
- @ApiModelProperty(value = "记住我")
- private Boolean rememberMe;
- }
|