update v1.1.0 版本接口提交

This commit is contained in:
yyb
2025-05-27 17:51:18 +08:00
parent f65f08d1a6
commit d098702af7
24 changed files with 1209 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
package com.m2pool.auth.entity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import javax.validation.constraints.Email;
/**
* @Description 管理系统用户登录请求对象
* @Date 2025/5/22 16:13
* @Author yyb
*/
@Data
@ApiModel(description = "")
public class LoginManageBody {
/** 邮箱 */
@Email
@ApiModelProperty(value = "邮箱", required = true, example = "")
private String userName;
/** 密码 */
@ApiModelProperty(value = "密码", required = true, example = "")
private String password;
private String uuid;
//private boolean flag = false;
}