20250808优化-单体电池优化
This commit is contained in:
@ -198,4 +198,16 @@
|
||||
<select id="getLoadNameList" parameterType="String" resultType="java.util.Map">
|
||||
select distinct device_id as id,device_name as deviceName from ems_devices_setting where site_id = #{siteId} and device_id like '%LOAD%'
|
||||
</select>
|
||||
|
||||
<select id="getClusterIdsByFuzzyQuery" resultType="java.util.Map">
|
||||
select DISTINCT device_id as id,
|
||||
device_name as deviceName,
|
||||
communication_status as communicationStatus
|
||||
from ems_devices_setting
|
||||
where site_id = #{siteId}
|
||||
<if test="parentId !=null and parentId !=''">
|
||||
and parent_id = #{parentId}
|
||||
</if>
|
||||
and device_category = #{deviceCategory}
|
||||
</select>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user