From 9010278b31f6c45c07173544ef7cd9507602c0e6 Mon Sep 17 00:00:00 2001
From: liurunyu <lry9898@163.com>
Date: 星期六, 28 十二月 2024 08:32:19 +0800
Subject: [PATCH] 输出sql变成常闭状态,只有需要调试时,再打开,一般情况都关闭。
---
pipIrr-platform/pipIrr-web/pipIrr-web-statistics/src/main/java/com/dy/pipIrrStatistics/statistics/StClientSv.java | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/pipIrr-platform/pipIrr-web/pipIrr-web-statistics/src/main/java/com/dy/pipIrrStatistics/statistics/StClientSv.java b/pipIrr-platform/pipIrr-web/pipIrr-web-statistics/src/main/java/com/dy/pipIrrStatistics/statistics/StClientSv.java
index b01338b..2cf0dc1 100644
--- a/pipIrr-platform/pipIrr-web/pipIrr-web-statistics/src/main/java/com/dy/pipIrrStatistics/statistics/StClientSv.java
+++ b/pipIrr-platform/pipIrr-web/pipIrr-web-statistics/src/main/java/com/dy/pipIrrStatistics/statistics/StClientSv.java
@@ -30,7 +30,7 @@
protected StClientAmountYearMapper stClientAmountYearDao ;
/**
- * 鏈堢粺璁�---婕忔崯
+ * 鏈堢粺璁�---鍐滄埛鐢ㄦ按閲忓強閲戦
*/
@Transactional
protected void statisticsMonth(Integer statisticsYear, Integer statisticsMonth, Long statisticsStartId, Long statisticsEndId){
@@ -50,6 +50,7 @@
po.year = statisticsYear ;
po.month = statisticsMonth ;
po.amount = vo.amount;
+ po.money = vo.money ;
if(po.id == null) {
stClientAmountMonthDao.insert(po);
}else{
@@ -60,7 +61,7 @@
}
/**
- * 骞寸粺璁�---婕忔崯
+ * 骞寸粺璁�---鍐滄埛鐢ㄦ按閲忓強閲戦
*/
@Transactional
protected void statisticsYear(Integer statisticsYear){
@@ -79,6 +80,7 @@
po.clientId = vo.clientId ;
po.year = statisticsYear ;
po.amount = vo.amount;
+ po.money = vo.money ;
if(po.id == null) {
stClientAmountYearDao.insert(po);
}else{
--
Gitblit v1.8.0