mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-13 21:32:07 +08:00
支付回调、补充组织资金免操作日志注解补充
This commit is contained in:
+1
@@ -91,6 +91,7 @@ public class OrganAmountController {
|
|||||||
@PostMapping("/fix")
|
@PostMapping("/fix")
|
||||||
@Operation(summary = "修正组织余额")
|
@Operation(summary = "修正组织余额")
|
||||||
@PermitAll
|
@PermitAll
|
||||||
|
@OperateLog(enable = false)
|
||||||
public CommonResult<Boolean> fixOrganAmount() {
|
public CommonResult<Boolean> fixOrganAmount() {
|
||||||
organAmountService.fixOrganAmount();
|
organAmountService.fixOrganAmount();
|
||||||
return success(true);
|
return success(true);
|
||||||
|
|||||||
+2
@@ -1,6 +1,7 @@
|
|||||||
package com.cf.imes.module.system.controller.admin.pay;
|
package com.cf.imes.module.system.controller.admin.pay;
|
||||||
|
|
||||||
import com.cf.imes.framework.common.pojo.CommonResult;
|
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.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.PayProductOrderUnifiedReqVO;
|
||||||
import com.cf.imes.module.system.controller.admin.pay.vo.PayRechargeOrderReqVO;
|
import com.cf.imes.module.system.controller.admin.pay.vo.PayRechargeOrderReqVO;
|
||||||
@@ -66,6 +67,7 @@ public class PayController {
|
|||||||
@PostMapping(value = "/notify/order/{channelCode}")
|
@PostMapping(value = "/notify/order/{channelCode}")
|
||||||
@Operation(summary = "支付渠道回调")
|
@Operation(summary = "支付渠道回调")
|
||||||
@PermitAll
|
@PermitAll
|
||||||
|
@OperateLog(enable = false)
|
||||||
public String notifyOrder(@PathVariable("channelCode") Integer channelCode,
|
public String notifyOrder(@PathVariable("channelCode") Integer channelCode,
|
||||||
@RequestParam(required = false) Map<String, String> params,
|
@RequestParam(required = false) Map<String, String> params,
|
||||||
@RequestBody(required = false) String body,
|
@RequestBody(required = false) String body,
|
||||||
|
|||||||
Reference in New Issue
Block a user