bug
lohir
2024-10-16 1aa33a1458ccb6c151871f00a3374c6cf9e68bdb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.ycl.jxkg.domain.vo.admin.user;
 
 
 
import lombok.Data;
 
import javax.validation.constraints.NotBlank;
 
@Data
public class UserCreateVO {
 
    private Integer id;
 
    @NotBlank
    private String userName;
 
    private String password;
 
    @NotBlank
    private String realName;
 
    private Integer age;
 
    private Integer status;
 
    private Integer sex;
 
    private String birthDay;
 
    private String phone;
 
    private Integer role;
 
    private Integer userLevel;
 
}