From 2e6bd9c6265fdae521acfb4fd36ed7a292d33274 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Mon, 22 Mar 2021 13:41:53 +0800 Subject: [PATCH] 20210322 平仓禁用操作(平仓,一键平仓,止盈止损) --- src/main/java/com/xcong/excoin/modules/platform/service/impl/PlatformBannerServiceImpl.java | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/platform/service/impl/PlatformBannerServiceImpl.java b/src/main/java/com/xcong/excoin/modules/platform/service/impl/PlatformBannerServiceImpl.java index a6e0c72..972edd7 100644 --- a/src/main/java/com/xcong/excoin/modules/platform/service/impl/PlatformBannerServiceImpl.java +++ b/src/main/java/com/xcong/excoin/modules/platform/service/impl/PlatformBannerServiceImpl.java @@ -23,6 +23,7 @@ @Override public Result findAll() { QueryWrapper<PlatformBannerEntity> queryWrapper = new QueryWrapper<>(); + queryWrapper.eq("is_banner",1); List<PlatformBannerEntity> paymentMethodList = platformBannerDao.selectList(queryWrapper); return Result.ok(paymentMethodList); } -- Gitblit v1.9.1