From d15ac34e0bab6e47e791f1b2549cec0cf815f4c1 Mon Sep 17 00:00:00 2001 From: yss <17921@qq.com> Date: Tue, 27 Sep 2022 11:02:29 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A3=8E=E6=8E=A7=E4=B8=AD=E5=BF=83=E5=8A=A0?= =?UTF-8?q?=E9=A3=8E=E6=8E=A7=E5=AF=B9=E8=B1=A1=E5=B1=9E=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../extend/riskmanage/controller/RiskManageController.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/com/chinaunicom/mall/ebtp/extend/riskmanage/controller/RiskManageController.java b/src/main/java/com/chinaunicom/mall/ebtp/extend/riskmanage/controller/RiskManageController.java index b851321..f3f6e37 100644 --- a/src/main/java/com/chinaunicom/mall/ebtp/extend/riskmanage/controller/RiskManageController.java +++ b/src/main/java/com/chinaunicom/mall/ebtp/extend/riskmanage/controller/RiskManageController.java @@ -1,6 +1,9 @@ package com.chinaunicom.mall.ebtp.extend.riskmanage.controller; import com.chinaunicom.mall.ebtp.common.base.entity.BaseResponse; +import com.chinaunicom.mall.ebtp.common.log.OperationLogDetail; +import com.chinaunicom.mall.ebtp.common.log.enums.EbtpLogBusinessModule; +import com.chinaunicom.mall.ebtp.common.log.enums.EbtpLogType; import com.chinaunicom.mall.ebtp.extend.feign.client.RiskManageRegulationService; import com.chinaunicom.mall.ebtp.extend.feign.entity.risk.RiskManageRegulationGroupOuterVO; import com.chinaunicom.mall.ebtp.extend.riskmanage.entity.RiskManageRegulation; @@ -58,6 +61,7 @@ public class RiskManageController { * @return 返回结果 */ @PostMapping({"/findApplyRegulation"}) + @OperationLogDetail(businessModule = EbtpLogBusinessModule.OTHER,operationType = EbtpLogType.INSERT,detail = "风控中心-风险管控规则调用") public BaseResponse findApplyRegulation(@RequestBody RiskManageRegulationVO riskManageRegulation){ return riskManageService.findApplyRegulation(riskManageRegulation); }