fangyuan
2022-11-17 059eebfe1c54750e74e290ed7503e2cbf3f2f740
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.vo.user;
 
import com.ycl.api.BasePageVO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author Lyq
 * @version 1.0
 * @date 2022/9/7
 */
public class UserVO {
 
    @Data
    @ApiModel
    public static class PageUserVO extends BasePageVO {
        @ApiModelProperty(value = "部门id,0即为查询全部,默认0",example = "0")
        private Long departmentId;
 
 
        @ApiModelProperty(value = "用户类型,0即为查询全部,默认0",example = "0")
        private Integer userType;
 
        @ApiModelProperty(value = "职务")
        private String jobTitle;
 
        @ApiModelProperty(value = "电话")
        private String mobile;
 
        @ApiModelProperty(value = "关键字")
        private String keyword;
 
    }
 
}