提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.module.system.controller.admin.user.vo.user; |
H |
2 |
|
|
3 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
4 |
import lombok.Data; |
|
5 |
import org.hibernate.validator.constraints.Length; |
|
6 |
|
|
7 |
import javax.validation.constraints.NotEmpty; |
|
8 |
import javax.validation.constraints.NotNull; |
|
9 |
|
|
10 |
@Schema(description = "管理后台 - 用户更新密码 Request VO") |
|
11 |
@Data |
|
12 |
public class UserUpdatePasswordReqVO { |
|
13 |
|
|
14 |
@Schema(description = "用户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
|
15 |
@NotNull(message = "用户编号不能为空") |
|
16 |
private Long id; |
|
17 |
|
|
18 |
@Schema(description = "密码", requiredMode = Schema.RequiredMode.REQUIRED, example = "123456") |
|
19 |
@NotEmpty(message = "密码不能为空") |
|
20 |
@Length(min = 4, max = 16, message = "密码长度为 4-16 位") |
|
21 |
private String password; |
|
22 |
|
|
23 |
} |