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(description = "密码" ) /**
private String passWord; *
* 使
* @Schema `Swagger`
*/
@Schema(description = "密码")
private String passWord;
@Schema(description = "邮箱" ) /**
private String userMail; *
*
* @Schema `Swagger`
*/
@Schema(description = "邮箱")
private String userMail;
@Schema(description = "昵称" ) /**
private String nickName; *
* 使便
* @Schema `Swagger`
*/
@Schema(description = "昵称")
private String nickName;
@Schema(description = "用户名" ) /**
private String userName; *
* 使
* @Schema `Swagger`
*/
@Schema(description = "用户名")
private String userName;
@Schema(description = "手机号" ) /**
private String mobile; *
* 便
* @Schema `Swagger`
*/
@Schema(description = "手机号")
private String mobile;
@Schema(description = "头像" ) /**
private String img; *
*
* @Schema `Swagger`
*/
@Schema(description = "头像")
private String img;
@Schema(description = "校验登陆注册验证码成功的标识" ) /**
private String checkRegisterSmsFlag; *
*
* @Schema `Swagger`
*/
@Schema(description = "校验登陆注册验证码成功的标识")
private String checkRegisterSmsFlag;
@Schema(description = "当账户未绑定时临时的uid" ) /**
private String tempUid; * uid
* uid便
* @Schema `Swagger` uid
*/
@Schema(description = "当账户未绑定时临时的uid")
private String tempUid;
@Schema(description = "用户id" ) /**
private Long userId; * id
} * id
* @Schema `Swagger` id
*/
@Schema(description = "用户id")
private Long userId;
}
Loading…
Cancel
Save