Update UserRegisterParam.java

cyj
pbvfus8to 8 months ago
parent 547a5f0712
commit d81c5bdead

@ -14,36 +14,86 @@ import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data; import lombok.Data;
/** /**
*
* 便
* `io.swagger.v3.oas.annotations.media.Schema``Swagger`便
*
* @author lh * @author lh
*/ */
@Data @Data
// 使用 @Data 注解,由 lombok 自动生成常用的方法如Getter、Setter、toString、equals、hashCode等方法
@Schema(description = "设置用户信息") @Schema(description = "设置用户信息")
public class UserRegisterParam { public class UserRegisterParam {
/**
*
* 使
* @Schema `Swagger`
*/
@Schema(description = "密码") @Schema(description = "密码")
private String passWord; private String passWord;
/**
*
*
* @Schema `Swagger`
*/
@Schema(description = "邮箱") @Schema(description = "邮箱")
private String userMail; private String userMail;
/**
*
* 使便
* @Schema `Swagger`
*/
@Schema(description = "昵称") @Schema(description = "昵称")
private String nickName; private String nickName;
/**
*
* 使
* @Schema `Swagger`
*/
@Schema(description = "用户名") @Schema(description = "用户名")
private String userName; private String userName;
/**
*
* 便
* @Schema `Swagger`
*/
@Schema(description = "手机号") @Schema(description = "手机号")
private String mobile; private String mobile;
/**
*
*
* @Schema `Swagger`
*/
@Schema(description = "头像") @Schema(description = "头像")
private String img; private String img;
/**
*
*
* @Schema `Swagger`
*/
@Schema(description = "校验登陆注册验证码成功的标识") @Schema(description = "校验登陆注册验证码成功的标识")
private String checkRegisterSmsFlag; private String checkRegisterSmsFlag;
/**
* uid
* uid便
* @Schema `Swagger` uid
*/
@Schema(description = "当账户未绑定时临时的uid") @Schema(description = "当账户未绑定时临时的uid")
private String tempUid; private String tempUid;
/**
* id
* id
* @Schema `Swagger` id
*/
@Schema(description = "用户id") @Schema(description = "用户id")
private Long userId; private Long userId;
} }
Loading…
Cancel
Save