这是基于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.
 
 
 
 
 
 

1.3 KiB

LINGYUN.Abp.DataProtectionManagement.HttpApi

Data protection management HTTP API module, providing REST API interfaces for data protection management.

Features

  • Data Protection Management REST API
    • Create Data Protection
    • Update Data Protection
    • Delete Data Protection
    • Query Data Protection

API Controllers

  • DataProtectionController - Data Protection Controller
    • GET /api/data-protection-management/data-protection/{id} - Get Specific Data Protection
    • GET /api/data-protection-management/data-protection - Get Data Protection List
    • POST /api/data-protection-management/data-protection - Create Data Protection
    • PUT /api/data-protection-management/data-protection/{id} - Update Data Protection
    • DELETE /api/data-protection-management/data-protection/{id} - Delete Data Protection

Permission Validation

  • All APIs require authentication
  • Creating data protection requires DataProtectionManagement.DataProtection.Create permission
  • Updating data protection requires DataProtectionManagement.DataProtection.Update permission
  • Deleting data protection requires DataProtectionManagement.DataProtection.Delete permission
  • Querying data protection requires DataProtectionManagement.DataProtection permission