feat(mall): 为 AdminRunVipController 中的碳积分系统设置接口添加操作日志

- 在 bonusSystemSetting 方法上添加了 @ControllerEndpoint 注解
- 设置操作描述为 "碳积分-系统设置"
- 异常时显示 "操作失败" 消息
1 files modified
1 ■■■■ changed files
src/main/java/cc/mrbird/febs/mall/controller/AdminRunVipController.java 1 ●●●● patch | view | raw | blame | history
src/main/java/cc/mrbird/febs/mall/controller/AdminRunVipController.java
@@ -28,6 +28,7 @@
    private final ISystemService systemService;
    @PostMapping(value = "/bonusSystemSetting")
    @ControllerEndpoint(operation = "碳积分-系统设置", exceptionMessage = "操作失败")
    public FebsResponse bonusSystemSetting(@RequestBody Map<String, Object> map) {
        systemService.bonusSystemSetting(map);
        return new FebsResponse().success().message("设置成功");