From d843fe668c29bd45c986bc915bcdb72a527e2776 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期三, 14 六月 2023 15:09:32 +0800
Subject: [PATCH] Merge branch 'master' of http://git.homecommunity.cn/supervip/MicroCommunity
---
service-fee/src/main/java/com/java110/fee/dao/impl/PayFeeDetailMonthServiceDaoImpl.java | 31 +++++++++++++++++++++++++++----
1 files changed, 27 insertions(+), 4 deletions(-)
diff --git a/service-fee/src/main/java/com/java110/fee/dao/impl/PayFeeDetailMonthServiceDaoImpl.java b/service-fee/src/main/java/com/java110/fee/dao/impl/PayFeeDetailMonthServiceDaoImpl.java
index 5cf50ef..04867bd 100644
--- a/service-fee/src/main/java/com/java110/fee/dao/impl/PayFeeDetailMonthServiceDaoImpl.java
+++ b/service-fee/src/main/java/com/java110/fee/dao/impl/PayFeeDetailMonthServiceDaoImpl.java
@@ -77,11 +77,11 @@
public void updatePayFeeDetailMonthInfo(Map info) throws DAOException {
logger.debug("淇敼鏈堢即璐硅〃淇℃伅Instance 鍏ュ弬 info : {}", info);
- int saveFlag = sqlSessionTemplate.update("payFeeDetailMonthServiceDaoImpl.updatePayFeeDetailMonthInfo", info);
+ sqlSessionTemplate.update("payFeeDetailMonthServiceDaoImpl.updatePayFeeDetailMonthInfo", info);
- if (saveFlag < 1) {
- throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "淇敼鏈堢即璐硅〃淇℃伅Instance鏁版嵁澶辫触锛�" + JSONObject.toJSONString(info));
- }
+// if (saveFlag < 1) {
+// throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "淇敼鏈堢即璐硅〃淇℃伅Instance鏁版嵁澶辫触锛�" + JSONObject.toJSONString(info));
+// }
}
/**
@@ -102,5 +102,28 @@
return Integer.parseInt(businessPayFeeDetailMonthInfos.get(0).get("count").toString());
}
+ @Override
+ public List<Map> queryPayFeeDetailMaxMonths(Map info) {
+ logger.debug("鏌ヨqueryPayFeeDetailMaxMonths淇℃伅 鍏ュ弬 info : {}", info);
+
+ List<Map> businessPayFeeDetailMonthInfos = sqlSessionTemplate.selectList("payFeeDetailMonthServiceDaoImpl.queryPayFeeDetailMaxMonths", info);
+
+ return businessPayFeeDetailMonthInfos;
+ }
+
+ @Override
+ public List<Map> getWaitDispersedFeeDetail(Map info) {
+ logger.debug("鏌ヨgetWaitDispersedFeeDetail淇℃伅 鍏ュ弬 info : {}", info);
+
+ List<Map> businessPayFeeDetailMonthInfos = sqlSessionTemplate.selectList("payFeeDetailMonthServiceDaoImpl.getWaitDispersedFeeDetail", info);
+
+ return businessPayFeeDetailMonthInfos;
+ }
+
+ @Override
+ public void deletePayFeeDetailMonthInfo(Map info) {
+ sqlSessionTemplate.update("payFeeDetailMonthServiceDaoImpl.deletePayFeeDetailMonthInfo", info);
+ }
+
}
--
Gitblit v1.8.0