From bdcb64f0293f27e2dfb3de12a60f6e8412cb962b Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期四, 26 五月 2022 01:45:22 +0800
Subject: [PATCH] 退费修改为 从证书地址中获取
---
java110-core/src/main/java/com/java110/core/base/dao/BaseServiceDao.java | 25 ++++++++++++-------------
1 files changed, 12 insertions(+), 13 deletions(-)
diff --git a/java110-core/src/main/java/com/java110/core/base/dao/BaseServiceDao.java b/java110-core/src/main/java/com/java110/core/base/dao/BaseServiceDao.java
old mode 100644
new mode 100755
index 8308b15..57e1c29
--- a/java110-core/src/main/java/com/java110/core/base/dao/BaseServiceDao.java
+++ b/java110-core/src/main/java/com/java110/core/base/dao/BaseServiceDao.java
@@ -2,15 +2,13 @@
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
-import com.java110.common.log.LoggerEngine;
+import com.java110.utils.log.LoggerEngine;
import com.java110.core.base.AppBase;
import org.mybatis.spring.SqlSessionTemplate;
import org.springframework.beans.factory.annotation.Autowired;
-import redis.clients.jedis.JedisPool;
import java.util.List;
import java.util.Map;
-import java.util.logging.Logger;
/**
* 璐熻矗鍜屾暟鎹簱浜や簰鍩虹被
@@ -20,8 +18,9 @@
*/
public class BaseServiceDao extends AppBase {
- @Autowired
- protected JedisPool jedisPool;
+ /* @Autowired
+ protected JedisPool jedisPool;*/
+
@Autowired
protected SqlSessionTemplate sqlSessionTemplate;
@@ -33,14 +32,6 @@
public void setSessionTemplate(SqlSessionTemplate sqlSessionTemplate) {
this.sqlSessionTemplate = sqlSessionTemplate;
- }
-
- public JedisPool getJedisPool() {
- return jedisPool;
- }
-
- public void setJedisPool(JedisPool jedisPool) {
- this.jedisPool = jedisPool;
}
private final static String SERVICE_CASE_JSON_EXCEPTION = "101";//杞琷son寮傚父
@@ -106,4 +97,12 @@
}
return reqMap;
}
+
+ /* public JedisPool getJedisPool() {
+ return jedisPool;
+ }
+
+ public void setJedisPool(JedisPool jedisPool) {
+ this.jedisPool = jedisPool;
+ }*/
}
--
Gitblit v1.8.0