From 86608996d124d0e447fd5a0a0dbceae8bb8ce84a Mon Sep 17 00:00:00 2001 From: Stormeye Wu Date: Fri, 28 Dec 2018 20:37:13 +0800 Subject: [PATCH] =?UTF-8?q?[=E4=B8=8A=E4=BC=A0=E6=96=87=E4=BB=B6][?= =?UTF-8?q?=E4=BF=AE=E6=94=B9]:=E6=A3=80=E6=9F=A5=E5=8D=A1=E6=B6=88?= =?UTF-8?q?=E8=B4=B9=E6=98=AF=E5=90=A6=E5=A4=A7=E4=BA=8E20=E6=AC=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/iformall/service/impl/WxCardSpendServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxCardSpendServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxCardSpendServiceImpl.java index afa8288f9..8286ef914 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxCardSpendServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxCardSpendServiceImpl.java @@ -295,7 +295,7 @@ public class WxCardSpendServiceImpl implements WxCardSpendService { cardSpendQ.setTenantId(tenantId); cardSpendQ.setCardId(cardId); psNum = wxCardSpendMapper.selectCount(cardSpendQ); - if (psNum >= 20) { + if (psNum > 20) { logger.error("微信分账已超过限制次数-20次"); throw new MallinkException(ErrorCode.PROFIT_SHARING_NUM_UP_LIMIT); }