From 1f46976c9ee72d7889fceee968db9c8aef885eca Mon Sep 17 00:00:00 2001 From: liurunyu <lry9898@163.com> Date: 星期一, 28 十月 2024 17:28:15 +0800 Subject: [PATCH] 远程监控中开关阀记录查询重构,增加了水价信息,调整了显示内容,优化SQL语句,开闭阀类型改为通信协议中的Common*.*.java中的统一匹配。 --- pipIrr-platform/pipIrr-global/src/main/resources/mapper/SeRefundMapper.xml | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/SeRefundMapper.xml b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/SeRefundMapper.xml index 5fc7a50..e928160 100644 --- a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/SeRefundMapper.xml +++ b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/SeRefundMapper.xml @@ -229,4 +229,18 @@ </if> </trim> </select> + + <!--鑾峰彇鎸囧畾鏃ユ湡寰俊閫�娆撅紙鍙绠楀凡閫�鐨勶級鎬婚锛岃储鍔″璐﹀鏍搁〉浣跨敤--> + <select id="getRefundSum" resultType="java.lang.Double"> + SELECT + SUM(refund_amount) AS tradeAmount + FROM se_refund + <where> + AND refund_status = 2 + <if test = "tradeDate != null and tradeDate !=''"> + AND Date(audit_time) = #{tradeDate} + </if> + </where> + GROUP BY Date(audit_time) + </select> </mapper> \ No newline at end of file -- Gitblit v1.8.0