获取委托项目信息接口加日志

This commit is contained in:
yss
2023-12-07 13:36:50 +08:00
parent eb422fe4d4
commit 3a9778b77d

View File

@ -1,6 +1,9 @@
package com.chinaunicom.mall.ebtp.project.feign; package com.chinaunicom.mall.ebtp.project.feign;
import com.chinaunicom.mall.ebtp.common.base.entity.BaseResponse; 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.entity.ProjInvitationFailRequest;
import com.chinaunicom.mall.ebtp.project.feign.fallback.EbtpProjectClientFallback; import com.chinaunicom.mall.ebtp.project.feign.fallback.EbtpProjectClientFallback;
import com.chinaunicom.mall.ebtp.project.projectentrust.entity.ebpentity.PurpImplementSendVO; import com.chinaunicom.mall.ebtp.project.projectentrust.entity.ebpentity.PurpImplementSendVO;
@ -32,6 +35,7 @@ public interface MallPurpApi {
* @return 返回结果 * @return 返回结果
*/ */
@PostMapping("/api/mall-purp/v1/purpBaseInfo/findDataByPurpImplmentId") @PostMapping("/api/mall-purp/v1/purpBaseInfo/findDataByPurpImplmentId")
@OperationLogDetail(businessModule = EbtpLogBusinessModule.PROJECT_ENTRUST_INIT,operationType = EbtpLogType.INSERT,detail = "委托项目信息出始化-委托信息")
BaseResponse<PurpImplementSendVO> findDataByPurpImplmentId(@RequestParam("purpImplmentId") Long purpImplmentId); BaseResponse<PurpImplementSendVO> findDataByPurpImplmentId(@RequestParam("purpImplmentId") Long purpImplmentId);