Merge branch 'master-风控中心加属性' into uat_code

# Conflicts:
#	src/main/resources/application.yml
This commit is contained in:
yss
2022-09-29 14:36:20 +08:00

View File

@ -6,6 +6,9 @@ package com.chinaunicom.mall.ebtp.extend.feign.client;
* @date 2021/08/18
*/
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.factory.RiskManageRegulationServiceFallbackFactory;
import com.chinaunicom.mall.ebtp.extend.riskmanage.entity.RiskManageRegulation;
import com.chinaunicom.mall.ebtp.extend.riskmanage.entity.RiskManageRegulationGroupApply;
@ -26,6 +29,7 @@ public interface RiskManageRegulationService {
* @return 返回结果
*/
@PostMapping({"/findRegulationParams"})
@OperationLogDetail(businessModule = EbtpLogBusinessModule.OTHER,operationType = EbtpLogType.SELECT,detail = "风控中心- 查询规则模型列表接口")
BaseResponse<List<RiskManageRegulationGroupOuterVO>> findRegulationParams(@RequestBody RiskManageRegulation riskManageRegulation);
/**
@ -34,5 +38,6 @@ public interface RiskManageRegulationService {
* @return 返回结果
*/
@PostMapping({"/applyRegulation"})
@OperationLogDetail(businessModule = EbtpLogBusinessModule.OTHER,operationType = EbtpLogType.SELECT,detail = "风控中心- 执行风控规则")
BaseResponse<Object> applyRegulation(@RequestBody RiskManageRegulationGroupApply regulationGroupApply);
}