refactor(codegen): 更新Swagger注解版本
Some checks reported errors
continuous-integration/drone/push Build encountered an error

This commit is contained in:
lsym004933
2026-01-17 13:54:59 +08:00
parent 5730ae5046
commit c3b925cc13
82 changed files with 573 additions and 573 deletions

View File

@@ -1,7 +1,7 @@
package cn.fateverse.auth.entity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import javax.validation.constraints.NotBlank;
@@ -16,26 +16,26 @@ public class LoginBody {
/**
* 用户名
*/
@ApiModelProperty("用户名")
@Schema(description = "用户名")
@NotBlank(message = "用户名不能为空")
private String username;
/**
* 用户密码
*/
@ApiModelProperty("用户密码")
@Schema(description = "用户密码")
@NotBlank(message = "密码不能为空")
private String password;
/**
* 验证码uuid
*/
@ApiModelProperty("验证码uuid")
@Schema(description = "验证码uuid")
@NotBlank(message = "验证码uuid")
private String uuid;
/**
* 验证码
*/
@ApiModelProperty("验证码")
@Schema(description = "验证码")
@NotBlank(message = "验证码不能为空")
private String code;