|  |  |  | 
|---|
|  |  |  | package com.dy.pipIrrGlobal.voBa; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.alibaba.fastjson2.JSONArray; | 
|---|
|  |  |  | import com.dy.common.po.BaseEntity; | 
|---|
|  |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
|---|
|  |  |  | import io.swagger.v3.oas.annotations.media.Schema; | 
|---|
|  |  |  | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @Schema(title = "角色信息视图对象") | 
|---|
|  |  |  | public class VoRole implements BaseEntity { | 
|---|
|  |  |  | private static final long serialVersionUID = 1L; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(title = "ID") | 
|---|
|  |  |  | private Long id; | 
|---|
|  |  |  | private static final long serialVersionUID = 202401241704001L; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(title = "角色编号") | 
|---|
|  |  |  | private Long roleId; | 
|---|
|  |  |  | private String roleId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(title = "角色名称") | 
|---|
|  |  |  | private String roleName; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(title = "权限ID") | 
|---|
|  |  |  | private Long perId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(title = "权限列表") | 
|---|
|  |  |  | private String permissions; | 
|---|
|  |  |  | private JSONArray permissions; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(title = "操作人") | 
|---|
|  |  |  | private String operator; | 
|---|