From 77547e85cac1f2e9a02e770fb8dfb603d236c67a Mon Sep 17 00:00:00 2001
From: liurunyu <lry9898@163.com>
Date: 星期三, 11 十二月 2024 11:50:36 +0800
Subject: [PATCH] 1、取水口年月水量统计、农户年月用水量统计、取水口漏损年月统计存在bug,进行了修改; 2、生成新的pipIrr-web-temp临时任务模块,执行一些临时任务,例如删除数据库中一些出错的数据。

---
 pipIrr-platform/pipIrr-web/pipIrr-web-sell/src/main/java/com/dy/pipIrrSell/wechatpay/PaymentSv.java |   24 +++++-------------------
 1 files changed, 5 insertions(+), 19 deletions(-)

diff --git a/pipIrr-platform/pipIrr-web/pipIrr-web-sell/src/main/java/com/dy/pipIrrSell/wechatpay/PaymentSv.java b/pipIrr-platform/pipIrr-web/pipIrr-web-sell/src/main/java/com/dy/pipIrrSell/wechatpay/PaymentSv.java
index 6a3075d..4ac249f 100644
--- a/pipIrr-platform/pipIrr-web/pipIrr-web-sell/src/main/java/com/dy/pipIrrSell/wechatpay/PaymentSv.java
+++ b/pipIrr-platform/pipIrr-web/pipIrr-web-sell/src/main/java/com/dy/pipIrrSell/wechatpay/PaymentSv.java
@@ -2,10 +2,9 @@
 
 import com.dy.pipIrrGlobal.daoSe.SeOpenIdMapper;
 import com.dy.pipIrrGlobal.daoSe.SeVcRechargeMapper;
-import com.dy.pipIrrGlobal.daoSe.SeWebchatLogonStateMapper;
+import com.dy.pipIrrGlobal.daoSe.SeWechatpayMapper;
 import com.dy.pipIrrGlobal.pojoSe.SeOpenId;
 import com.dy.pipIrrGlobal.pojoSe.SeVcRecharge;
-import com.dy.pipIrrGlobal.pojoSe.SeWebchatLogonState;
 import lombok.extern.slf4j.Slf4j;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
@@ -21,33 +20,19 @@
 @Service
 public class PaymentSv {
     @Autowired
-    private SeWebchatLogonStateMapper seWebchatLogonStateMapper;
-
-    @Autowired
     private SeVcRechargeMapper seVcRechargeMapper;
 
     @Autowired
     private SeOpenIdMapper seOpenIdMapper;
 
-    /**
-     * 娣诲姞鐧诲綍鎬佺姸鎬佽褰�
-     * @param po
-     * @return
-     */
-    Long insert(SeWebchatLogonState po) {
-        seWebchatLogonStateMapper.insert(po);
-        return po.getId();
-    }
+    @Autowired
+    private SeWechatpayMapper seWechatpayMapper;
 
     /**
      * 鏍规嵁鐧诲綍鎬両D鑾峰彇鐧诲綍鎬佸璞�
-     * @param id
+     * @param sessionId
      * @return
      */
-    SeWebchatLogonState selectOne2(Long id) {
-        return seWebchatLogonStateMapper.selectByPrimaryKey(id);
-    }
-
     SeOpenId selectOne(Long sessionId) {
         return seOpenIdMapper.selectByPrimaryKey(sessionId);
     }
@@ -61,4 +46,5 @@
         seVcRechargeMapper.insert(po);
         return po.getId();
     }
+
 }

--
Gitblit v1.8.0