wuzeyu
2024-01-24 163e802e5e7287842f7b01f40b870e998ff48395
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.dy.pipIrrGlobal.voBa;
 
import com.alibaba.fastjson2.JSONArray;
import com.dy.common.po.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.util.List;
import java.util.Map;
 
/**
 * @author ZhuBaoMin
 * @date 2023/12/20 10:19
 * @LastEditTime 2023/12/20 10:19
 * @Description 用户信息视图对象
 */
 
@Data
@Schema(title = "用户信息视图对象")
public class VoUserInfo implements BaseEntity {
    private static final long serialVersionUID = 202401241704002L;
 
    @Schema(title = "用户ID")
    private String userId;
 
    @Schema(title = "用户姓名")
    private String userName;
 
    @Schema(title = "手机号")
    private String phone;
 
    @Schema(title = "片区ID")
    private String blockId;
 
    @Schema(title = "片区名称")
    private String blockName;
 
    @Schema(title = "状态编号")
    private Integer stateId;
 
    @Schema(title = "状态名称")
    private String stateName;
 
    @Schema(title = "角色编号列表")
    private List<Map<String, Object>> roleIds;
 
    @Schema(title = "角色名称列表")
    private List<Map<String, Object>> roleNames;
 
    @Schema(title = "权限列表")
    private JSONArray permissions;
 
}