接口修复

This commit is contained in:
mashuanghui 2024-08-21 18:53:02 +08:00
parent 4d75d91766
commit 6ec0b4bf29
1 changed files with 7 additions and 0 deletions

View File

@ -121,4 +121,11 @@ public class SysConfigController
configService.removeBatchByIds(Arrays.asList(configIds));
return AjaxResult.success();
}
@RequiresPermissions("system:config:remove")
@SysLog(value = "参数管理", businessType = BusinessType.DELETE)
@DeleteMapping("/refreshCache")
public AjaxResult refreshCache()
{
return AjaxResult.success();
}
}