这是基于vue-vben-admin 模板适用于abp Vnext的前端管理项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
feijie d6c254fea6 feat(docs): 添加数据权限模块文档 1 year ago
..
LINGYUN/Abp/DataProtectionManagement feat(data-protection): add a data permission management module. 2 years ago
FodyWeavers.xml build: update FodyWeavers.xml 2 years ago
FodyWeavers.xsd feat(data-protection): add a data permission management module. 2 years ago
LINGYUN.Abp.DataProtectionManagement.HttpApi.csproj upgrade abp framework to 8.2.0 1 year ago
README.EN.md feat(docs): 添加数据权限模块文档 1 year ago
README.md feat(docs): 添加数据权限模块文档 1 year ago

README.md

LINGYUN.Abp.DataProtectionManagement.HttpApi

数据权限管理HTTP API模块,提供数据权限管理的REST API接口。

功能

  • 数据权限管理REST API
    • 创建数据权限
    • 更新数据权限
    • 删除数据权限
    • 查询数据权限

API控制器

  • DataProtectionController - 数据权限控制器
    • GET /api/data-protection-management/data-protection/{id} - 获取指定数据权限
    • GET /api/data-protection-management/data-protection - 获取数据权限列表
    • POST /api/data-protection-management/data-protection - 创建数据权限
    • PUT /api/data-protection-management/data-protection/{id} - 更新数据权限
    • DELETE /api/data-protection-management/data-protection/{id} - 删除数据权限

权限验证

  • 所有API都需要认证
  • 创建数据权限需要 DataProtectionManagement.DataProtection.Create 权限
  • 更新数据权限需要 DataProtectionManagement.DataProtection.Update 权限
  • 删除数据权限需要 DataProtectionManagement.DataProtection.Delete 权限
  • 查询数据权限需要 DataProtectionManagement.DataProtection 权限

相关链接