支付回调、补充组织资金免操作日志注解补充

This commit is contained in:
gaoqr
2025-09-04 10:51:52 +08:00
parent 64dc1cfe43
commit c8183fcef9
2 changed files with 3 additions and 0 deletions
@@ -91,6 +91,7 @@ public class OrganAmountController {
@PostMapping("/fix")
@Operation(summary = "修正组织余额")
@PermitAll
@OperateLog(enable = false)
public CommonResult<Boolean> fixOrganAmount() {
organAmountService.fixOrganAmount();
return success(true);
@@ -1,6 +1,7 @@
package com.cf.imes.module.system.controller.admin.pay;
import com.cf.imes.framework.common.pojo.CommonResult;
import com.cf.imes.framework.operatelog.core.annotations.OperateLog;
import com.cf.imes.framework.pay.core.client.dto.order.PayOrderRespDTO;
import com.cf.imes.module.system.controller.admin.pay.vo.PayProductOrderUnifiedReqVO;
import com.cf.imes.module.system.controller.admin.pay.vo.PayRechargeOrderReqVO;
@@ -66,6 +67,7 @@ public class PayController {
@PostMapping(value = "/notify/order/{channelCode}")
@Operation(summary = "支付渠道回调")
@PermitAll
@OperateLog(enable = false)
public String notifyOrder(@PathVariable("channelCode") Integer channelCode,
@RequestParam(required = false) Map<String, String> params,
@RequestBody(required = false) String body,