|
@@ -21,5 +21,14 @@ type ReqRoleGrant struct {
|
|
|
DataScopeIds string `json:"dataScopeIds"` //数据权限ID
|
|
|
ApiScopeIds string `json:"apiScopeIds"` //接口权限ID
|
|
|
}
|
|
|
+type RspRoleTree struct {
|
|
|
+ HasChildren bool `json:"hasChildren"`
|
|
|
+ ID string `json:"id"`
|
|
|
+ ParentId string `json:"parentId"`
|
|
|
+ Title string `json:"title"`
|
|
|
+ Key string `json:"key"`
|
|
|
+ Value string `json:"value"`
|
|
|
+ Children []RspRoleTree `json:"children"`
|
|
|
+}
|
|
|
|
|
|
const ExistChild = "需要删除的记录中存在子角色,请先删除子角色!"
|