统计报表-功率曲线

This commit is contained in:
2025-07-09 22:41:14 +08:00
parent 53f515ad6c
commit 406cc59b25
9 changed files with 213 additions and 14 deletions

View File

@ -302,18 +302,21 @@
<sql id="dataTypeChooseFilter">
<choose>
<when test="dataType == 1">
<when test='dataType == "1"'>
t.operating_temp AS temp
</when>
<when test="dataType == 2">
<when test='dataType == "2"'>
t.stack_voltage as voltage
</when>
<when test="dataType == 3">
<when test='dataType == "3"'>
t.stack_current as current
</when>
<when test="dataType == 4">
<when test='dataType == "4"'>
t.stack_soc as soc
</when>
<otherwise>
0 AS temp
</otherwise>
</choose>
</sql>