From bd09ba3723a91fb8f1ccf51784c34c1639fb89a8 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期一, 21 二月 2022 08:37:21 +0800
Subject: [PATCH] 优化 枣庄需求 滞纳金 计算方式修改
---
service-fee/src/main/java/com/java110/fee/cmd/payFeeBatch/UpdatePayFeeBatchCmd.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/service-fee/src/main/java/com/java110/fee/cmd/payFeeBatch/UpdatePayFeeBatchCmd.java b/service-fee/src/main/java/com/java110/fee/cmd/payFeeBatch/UpdatePayFeeBatchCmd.java
index 1c3f5a8..eea9ebf 100644
--- a/service-fee/src/main/java/com/java110/fee/cmd/payFeeBatch/UpdatePayFeeBatchCmd.java
+++ b/service-fee/src/main/java/com/java110/fee/cmd/payFeeBatch/UpdatePayFeeBatchCmd.java
@@ -32,7 +32,7 @@
import com.java110.utils.util.BeanConvertUtil;
import com.java110.vo.ResultVo;
import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
+import com.java110.core.log.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
@@ -63,7 +63,7 @@
Assert.hasKeyAndValue(reqJson, "batchId", "batchId涓嶈兘涓虹┖");
Assert.hasKeyAndValue(reqJson, "communityId", "communityId涓嶈兘涓虹┖");
Assert.hasKeyAndValue(reqJson, "state", "鐘舵�佷笉鑳戒负绌�");
- Assert.hasKeyAndValue(reqJson, "message", "娑堟伅涓嶈兘涓虹┖");
+ Assert.hasKeyAndValue(reqJson, "msg", "娑堟伅涓嶈兘涓虹┖");
}
@Override
@@ -84,7 +84,7 @@
throw new CmdException("鏇存柊鏁版嵁澶辫触");
}
- if (!PayFeeBatchDto.STATE_FAIL.equals(payFeeBatchPo.getState())) {
+ if (PayFeeBatchDto.STATE_FAIL.equals(payFeeBatchPo.getState())) {
cmdDataFlowContext.setResponseEntity(ResultVo.success());
return;
}
--
Gitblit v1.8.0