| | |
| | | @Data |
| | | @Schema(title = "用户信息视图对象") |
| | | public class VoUserInfo implements BaseEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | 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; |
| | |
| | | private List<Map<String, Object>> roleNames; |
| | | |
| | | @Schema(title = "权限列表") |
| | | //private List<Map<String, Object>> permissions; |
| | | private JSONArray permissions; |
| | | |
| | | } |