From b278a4b743d0cf45fd0b42bc78ff42f4e1124baf Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期二, 19 十月 2021 12:20:04 +0800
Subject: [PATCH] 优化diamante
---
service-report/src/main/java/com/java110/report/dao/impl/ReportFeeYearCollectionServiceDaoImpl.java | 62 ++++++++++++++++++++-----------
1 files changed, 40 insertions(+), 22 deletions(-)
diff --git a/service-report/src/main/java/com/java110/report/dao/impl/ReportFeeYearCollectionServiceDaoImpl.java b/service-report/src/main/java/com/java110/report/dao/impl/ReportFeeYearCollectionServiceDaoImpl.java
old mode 100644
new mode 100755
index a3ffdf3..510aff4
--- a/service-report/src/main/java/com/java110/report/dao/impl/ReportFeeYearCollectionServiceDaoImpl.java
+++ b/service-report/src/main/java/com/java110/report/dao/impl/ReportFeeYearCollectionServiceDaoImpl.java
@@ -1,15 +1,13 @@
package com.java110.report.dao.impl;
import com.alibaba.fastjson.JSONObject;
-import com.java110.utils.constant.ResponseConstant;
-import com.java110.utils.exception.DAOException;
-import com.java110.utils.util.DateUtil;
import com.java110.core.base.dao.BaseServiceDao;
import com.java110.report.dao.IReportFeeYearCollectionServiceDao;
+import com.java110.utils.constant.ResponseConstant;
+import com.java110.utils.exception.DAOException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Service;
-import org.springframework.transaction.annotation.Transactional;
import java.util.List;
import java.util.Map;
@@ -25,51 +23,52 @@
private static Logger logger = LoggerFactory.getLogger(ReportFeeYearCollectionServiceDaoImpl.class);
-
-
-
/**
* 淇濆瓨璐圭敤骞存敹璐逛俊鎭� 鍒� instance
- * @param info bId 淇℃伅
+ *
+ * @param info bId 淇℃伅
* @throws DAOException DAO寮傚父
*/
@Override
public void saveReportFeeYearCollectionInfo(Map info) throws DAOException {
- logger.debug("淇濆瓨璐圭敤骞存敹璐逛俊鎭疘nstance 鍏ュ弬 info : {}",info);
+ logger.debug("淇濆瓨璐圭敤骞存敹璐逛俊鎭疘nstance 鍏ュ弬 info : {}", info);
- int saveFlag = sqlSessionTemplate.insert("reportFeeYearCollectionServiceDaoImpl.saveReportFeeYearCollectionInfo",info);
+ int saveFlag = sqlSessionTemplate.insert("reportFeeYearCollectionServiceDaoImpl.saveReportFeeYearCollectionInfo", info);
- if(saveFlag < 1){
- throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR,"淇濆瓨璐圭敤骞存敹璐逛俊鎭疘nstance鏁版嵁澶辫触锛�"+ JSONObject.toJSONString(info));
+ if (saveFlag < 1) {
+ throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "淇濆瓨璐圭敤骞存敹璐逛俊鎭疘nstance鏁版嵁澶辫触锛�" + JSONObject.toJSONString(info));
}
}
/**
* 鏌ヨ璐圭敤骞存敹璐逛俊鎭紙instance锛�
+ *
* @param info bId 淇℃伅
* @return List<Map>
* @throws DAOException DAO寮傚父
*/
@Override
public List<Map> getReportFeeYearCollectionInfo(Map info) throws DAOException {
- logger.debug("鏌ヨ璐圭敤骞存敹璐逛俊鎭� 鍏ュ弬 info : {}",info);
+ logger.debug("鏌ヨ璐圭敤骞存敹璐逛俊鎭� 鍏ュ弬 info : {}", info);
- List<Map> businessReportFeeYearCollectionInfos = sqlSessionTemplate.selectList("reportFeeYearCollectionServiceDaoImpl.getReportFeeYearCollectionInfo",info);
+ List<Map> businessReportFeeYearCollectionInfos = sqlSessionTemplate.selectList("reportFeeYearCollectionServiceDaoImpl.getReportFeeYearCollectionInfo", info);
return businessReportFeeYearCollectionInfos;
}
+
/**
* 鏌ヨ璐圭敤骞存敹璐逛俊鎭紙instance锛�
+ *
* @param info bId 淇℃伅
* @return List<Map>
* @throws DAOException DAO寮傚父
*/
@Override
public List<Map> getReportFeeYearCollectionInfos(Map info) throws DAOException {
- logger.debug("鏌ヨ璐圭敤骞存敹璐逛俊鎭� 鍏ュ弬 info : {}",info);
+ logger.debug("鏌ヨ璐圭敤骞存敹璐逛俊鎭� 鍏ュ弬 info : {}", info);
- List<Map> businessReportFeeYearCollectionInfos = sqlSessionTemplate.selectList("reportFeeYearCollectionServiceDaoImpl.getReportFeeYearCollectionInfos",info);
+ List<Map> businessReportFeeYearCollectionInfos = sqlSessionTemplate.selectList("reportFeeYearCollectionServiceDaoImpl.getReportFeeYearCollectionInfos", info);
return businessReportFeeYearCollectionInfos;
}
@@ -77,28 +76,47 @@
/**
* 淇敼璐圭敤骞存敹璐逛俊鎭�
+ *
* @param info 淇敼淇℃伅
* @throws DAOException DAO寮傚父
*/
@Override
public void updateReportFeeYearCollectionInfo(Map info) throws DAOException {
- logger.debug("淇敼璐圭敤骞存敹璐逛俊鎭疘nstance 鍏ュ弬 info : {}",info);
+ logger.debug("淇敼璐圭敤骞存敹璐逛俊鎭疘nstance 鍏ュ弬 info : {}", info);
- int saveFlag = sqlSessionTemplate.update("reportFeeYearCollectionServiceDaoImpl.updateReportFeeYearCollectionInfo",info);
+ int saveFlag = sqlSessionTemplate.update("reportFeeYearCollectionServiceDaoImpl.updateReportFeeYearCollectionInfo", info);
- if(saveFlag < 1){
- throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR,"淇敼璐圭敤骞存敹璐逛俊鎭疘nstance鏁版嵁澶辫触锛�"+ JSONObject.toJSONString(info));
+ if (saveFlag < 1) {
+ throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "淇敼璐圭敤骞存敹璐逛俊鎭疘nstance鏁版嵁澶辫触锛�" + JSONObject.toJSONString(info));
}
}
- /**
+ /**
+ * 淇敼璐圭敤骞存敹璐逛俊鎭�
+ *
+ * @param info 淇敼淇℃伅
+ * @throws DAOException DAO寮傚父
+ */
+ @Override
+ public void deleteReportFeeYearCollectionInfo(Map info) throws DAOException {
+ logger.debug("deleteReportFeeYearCollectionInfo 鍏ュ弬 info : {}", info);
+
+ int saveFlag = sqlSessionTemplate.update("reportFeeYearCollectionServiceDaoImpl.deleteReportFeeYearCollectionInfo", info);
+
+ if (saveFlag < 1) {
+ throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "淇敼璐圭敤骞存敹璐逛俊鎭疘nstance鏁版嵁澶辫触锛�" + JSONObject.toJSONString(info));
+ }
+ }
+
+ /**
* 鏌ヨ璐圭敤骞存敹璐规暟閲�
+ *
* @param info 璐圭敤骞存敹璐逛俊鎭�
* @return 璐圭敤骞存敹璐规暟閲�
*/
@Override
public int queryReportFeeYearCollectionsCount(Map info) {
- logger.debug("鏌ヨ璐圭敤骞存敹璐规暟鎹� 鍏ュ弬 info : {}",info);
+ logger.debug("鏌ヨ璐圭敤骞存敹璐规暟鎹� 鍏ュ弬 info : {}", info);
List<Map> businessReportFeeYearCollectionInfos = sqlSessionTemplate.selectList("reportFeeYearCollectionServiceDaoImpl.queryReportFeeYearCollectionsCount", info);
if (businessReportFeeYearCollectionInfos.size() < 1) {
--
Gitblit v1.8.0