From 76322d988f5295b287a1dd9ad03cd78d70fbdf8e Mon Sep 17 00:00:00 2001 From: zainali5120 <512061637@qq.com> Date: Thu, 26 Nov 2020 17:21:54 +0800 Subject: [PATCH] 取消部分日志打印 --- src/main/java/com/xcong/excoin/modules/platform/controller/PlatformController.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/platform/controller/PlatformController.java b/src/main/java/com/xcong/excoin/modules/platform/controller/PlatformController.java index 841c08d..a1cb462 100644 --- a/src/main/java/com/xcong/excoin/modules/platform/controller/PlatformController.java +++ b/src/main/java/com/xcong/excoin/modules/platform/controller/PlatformController.java @@ -39,7 +39,7 @@ @ApiOperation(value = "findUsdtCnyExchange", notes = "Cny|Usdt兑换") @GetMapping(value = "/findUsdtCnyExchange") public Result findUsdtCnyExchange(@ApiParam(name = "type", value = "类型", type="string", required=true) @RequestParam("type") String type) { - log.info("type值----->{}", type); + //log.info("type值----->{}", type); return platformCnyUsdtExchangeService.findUsdtCnyExchange(type); } @@ -49,13 +49,13 @@ return platformPaymentMethodService.findAll(); } - @ApiOperation(value = "findPlatformBannerList", notes = "首页轮播图") + @ApiOperation(value = "首页轮播图", notes = "首页轮播图") @GetMapping(value = "/findPlatformBannerList") public Result findPlatformBannerList() { return platformBannerService.findAll(); } - @ApiOperation(value = "findPlatformNoticeList", notes = "首页公告查询") + @ApiOperation(value = "首页公告查询", notes = "首页公告查询") @GetMapping(value = "/findPlatformNoticeList") public Result findPlatformNoticeList() { return PlatformNoticeService.findPlatformNoticeList(); -- Gitblit v1.9.1