From 494a59976459b88ac0f0a13c5893b906e10bdfa0 Mon Sep 17 00:00:00 2001 From: whyclxw <810412026@qq.com> Date: 星期五, 30 五月 2025 16:17:56 +0800 Subject: [PATCH] 单体统计修改 --- src/main/resources/mapper/BattInfMapper.xml | 27 +++++++++++++++++++++++++++ 1 files changed, 27 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/BattInfMapper.xml b/src/main/resources/mapper/BattInfMapper.xml index b44af18..97c223a 100644 --- a/src/main/resources/mapper/BattInfMapper.xml +++ b/src/main/resources/mapper/BattInfMapper.xml @@ -173,5 +173,32 @@ order by tb_batt_inf.dev_id asc,battgroup_id asc </where> </select> + <select id="getMonStatistic" resultType="com.whyc.pojo.db_station.BattInf"> + select distinct tb_batt_inf.* from db_station.tb_batt_inf + <where> + <if test="stic.product!=null"> + and tb_batt_inf.product=#{stic.product} + </if> + <if test="stic.moncapstd!=null"> + and tb_batt_inf.moncapstd=#{stic.moncapstd} + </if> + <if test="stic.monvolstd!=null"> + and tb_batt_inf.monvolstd=#{stic.monvolstd} + </if> + <if test="stic.startTime!=null"> + and tb_batt_inf.create_time>=#{stic.startTime} + </if> + <if test="stic.endTime!=null"> + and tb_batt_inf.create_time<=#{stic.endTime} + </if> + <if test="stic.uid>100"> + and tb_batt_inf.station_id in( + select distinct station_id from db_user.tb_baojigroup_power,db_user.tb_baojigroup_usr + where tb_baojigroup_power.baoji_group_id=tb_baojigroup_usr.baoji_group_id + and tb_baojigroup_usr.uid=#{stic.uid} + ) + </if> + </where> + </select> </mapper> \ No newline at end of file -- Gitblit v1.9.1