From 95bfb16272681697b4a59241a7c7621cbf5fbe44 Mon Sep 17 00:00:00 2001 From: zhangqinbin <181961702@qq.com> Date: Fri, 1 Jul 2022 09:57:19 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../crypconfigure/controller/CrypConfigureController.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/chinaunicom/mall/ebtp/extend/crypconfigure/controller/CrypConfigureController.java b/src/main/java/com/chinaunicom/mall/ebtp/extend/crypconfigure/controller/CrypConfigureController.java index ab9ac23..ebb88c1 100644 --- a/src/main/java/com/chinaunicom/mall/ebtp/extend/crypconfigure/controller/CrypConfigureController.java +++ b/src/main/java/com/chinaunicom/mall/ebtp/extend/crypconfigure/controller/CrypConfigureController.java @@ -9,6 +9,8 @@ import com.chinaunicom.mall.ebtp.extend.blockchain.entity.BlockChainLogVo; import com.chinaunicom.mall.ebtp.extend.crypconfigure.entity.CrypBean; import com.chinaunicom.mall.ebtp.extend.crypconfigure.entity.CrypConfigure; import com.chinaunicom.mall.ebtp.extend.crypconfigure.service.ICrypConfigureService; +import lombok.extern.slf4j.Slf4j; +import org.apache.poi.ss.formula.functions.T; import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; @@ -21,6 +23,7 @@ import javax.annotation.Resource; import javax.validation.Valid; import java.util.List; +@Slf4j @RestController @Api(value = "区块链参数配置表") @RequestMapping("/v1/crypconfigure") @@ -129,8 +132,9 @@ public class CrypConfigureController{ @ApiOperation("调用天擎接口") @PostMapping("/callUniInterfaceJson") public BaseResponse callUniInterfaceJson(@RequestBody CrypBean bean) { - - return BaseResponse.success(this.iCrypConfigureService.callUniInterfaceJson(bean)); + String str = this.iCrypConfigureService.callUniInterfaceJson(bean); + log.info("----调用天擎接口---callUniInterfaceJson-------:"+str); + return BaseResponse.success(str); } /**