修改security中实体结构,增加roleScope属性

This commit is contained in:
ajaxfan
2021-04-25 15:19:05 +08:00
parent c245275dd3
commit fa98b5fdef
2 changed files with 4 additions and 3 deletions

View File

@ -6,10 +6,11 @@ import lombok.Data;
@Data
public class AuthorityEntity {
private String roleId;
private String roleName;
private String roleCode;
private String roleId;
private String roleScope;
private List<String> authorities;
}