单体电池解析数据改动;枚举值匹配转换改动
This commit is contained in:
@ -212,7 +212,7 @@
|
||||
battery_pack, battery_cluster, battery_cell_id,
|
||||
voltage, temperature, soc, soh, data_timestamp,
|
||||
create_by, create_time, update_by, update_time,
|
||||
remark, site_id, device_id, cluster_device_id, inter_resistance
|
||||
remark, site_id, device_id, cluster_device_id, inter_resistance, current
|
||||
) VALUES
|
||||
<foreach collection="list" item="item" separator=",">
|
||||
(
|
||||
|
||||
@ -522,8 +522,13 @@
|
||||
<select id="getDevicePointMatchList" resultMap="EmsPointMatchResult">
|
||||
<include refid="selectEmsPointMatchVo"/>
|
||||
where site_id = #{siteId}
|
||||
and device_id = #{deviceId}
|
||||
and device_category = #{deviceCategory}
|
||||
<if test="deviceId != null">
|
||||
and device_id = #{deviceId}
|
||||
</if>
|
||||
<if test="deviceId == null">
|
||||
and device_id is null
|
||||
</if>
|
||||
and device_category = #{deviceCategory}
|
||||
</select>
|
||||
|
||||
<select id="selectEmsPointMatchExportList" parameterType="EmsPointMatch" resultType="com.xzzn.ems.domain.vo.DevicePointMatchExportVo">
|
||||
|
||||
Reference in New Issue
Block a user