|
|
@@ -9,21 +9,22 @@ import java.io.Serializable;
|
|
|
@Data
|
|
|
public class AuthModel implements Serializable {
|
|
|
|
|
|
+ @Schema(description = "大分组名称,如:角色管理")
|
|
|
private String modularName;
|
|
|
|
|
|
- @Schema(description = "权限名称")
|
|
|
+ @Schema(description = "权限名称,如:角色列表")
|
|
|
private String name;
|
|
|
|
|
|
- @Schema(description = "权限值")
|
|
|
+ @Schema(description = "权限值,如:roleList")
|
|
|
private String value;
|
|
|
|
|
|
- @Schema(description = "是否已有该权限")
|
|
|
+ @Schema(description = "是否已有该权限,是否已选中")
|
|
|
private boolean select;
|
|
|
|
|
|
@Schema(description = "排序")
|
|
|
private int index = 0;
|
|
|
|
|
|
- @Schema(description = "权限点类型")
|
|
|
+ @Schema(description = "权限点类型,如:菜单,列表")
|
|
|
private PermissionPointType pointType;
|
|
|
|
|
|
private String pointTypeStr;
|