From 3a9778b77d1ab9d5a17f23b5682f577221543d08 Mon Sep 17 00:00:00 2001 From: yss <17921@qq.com> Date: Thu, 7 Dec 2023 13:36:50 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8E=B7=E5=8F=96=E5=A7=94=E6=89=98=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E4=BF=A1=E6=81=AF=E6=8E=A5=E5=8F=A3=E5=8A=A0=E6=97=A5?= =?UTF-8?q?=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/chinaunicom/mall/ebtp/project/feign/MallPurpApi.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/com/chinaunicom/mall/ebtp/project/feign/MallPurpApi.java b/src/main/java/com/chinaunicom/mall/ebtp/project/feign/MallPurpApi.java index dc20ab0..00406fc 100644 --- a/src/main/java/com/chinaunicom/mall/ebtp/project/feign/MallPurpApi.java +++ b/src/main/java/com/chinaunicom/mall/ebtp/project/feign/MallPurpApi.java @@ -1,6 +1,9 @@ package com.chinaunicom.mall.ebtp.project.feign; 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.project.feign.entity.ProjInvitationFailRequest; import com.chinaunicom.mall.ebtp.project.feign.fallback.EbtpProjectClientFallback; import com.chinaunicom.mall.ebtp.project.projectentrust.entity.ebpentity.PurpImplementSendVO; @@ -32,6 +35,7 @@ public interface MallPurpApi { * @return 返回结果 */ @PostMapping("/api/mall-purp/v1/purpBaseInfo/findDataByPurpImplmentId") + @OperationLogDetail(businessModule = EbtpLogBusinessModule.PROJECT_ENTRUST_INIT,operationType = EbtpLogType.INSERT,detail = "委托项目信息出始化-委托信息") BaseResponse findDataByPurpImplmentId(@RequestParam("purpImplmentId") Long purpImplmentId);