You've already forked FrameTour-BE
用户权限
This commit is contained in:
@@ -10,7 +10,7 @@ public class LoginEntity {
|
||||
private String staffName;
|
||||
private String account;
|
||||
private String password;
|
||||
private String roleId;
|
||||
private Long roleId;
|
||||
private String typeName;
|
||||
private Date updateAt;
|
||||
}
|
||||
|
@@ -17,7 +17,5 @@ public class LoginRespVO {
|
||||
private String name;
|
||||
@ApiModelProperty(value = "角色名")
|
||||
private String typeName;
|
||||
@ApiModelProperty(value = "菜单列表")
|
||||
private List<MenuNode> menuNodeList;
|
||||
private boolean superAdmin;
|
||||
}
|
||||
|
@@ -13,7 +13,7 @@ public class AddOrUpdateRoleReqVO {
|
||||
private String name;
|
||||
// @ApiModelProperty(value = "0系统角色 1业务角色")
|
||||
// private Integer type;
|
||||
@ApiModelProperty(value = "菜单ID列表")
|
||||
private List<Integer> menuIdList;
|
||||
private List<String> permissions;
|
||||
private List<String> menus;
|
||||
|
||||
}
|
||||
|
@@ -0,0 +1,10 @@
|
||||
package com.ycwl.basic.model.pc.role.resp;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class RolePermissionResp {
|
||||
private String roleId;
|
||||
private String permStr;
|
||||
private String menuStr;
|
||||
}
|
Reference in New Issue
Block a user