| | |
| | | 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 |
| | |
| | | @Schema(title = "用户姓名") |
| | | private String userName; |
| | | |
| | | @Schema(title = "角色ID") |
| | | private Long roleId; |
| | | @Schema(title = "角色编号列表") |
| | | private List<Map<String, Object>> roleIds; |
| | | |
| | | @Schema(title = "角色名称") |
| | | private String roleName; |
| | | @Schema(title = "角色名称列表") |
| | | private List<Map<String, Object>> roleNames; |
| | | |
| | | @Schema(title = "授权列表") |
| | | private String permissions; |
| | | } |
| | | @Schema(title = "权限列表") |
| | | //private List<Map<String, Object>> permissions; |
| | | private JSONArray permissions; |
| | | |
| | | } |