平台修改意见20251120-优化点位清单导出内容

This commit is contained in:
zq
2025-12-05 17:15:13 +08:00
parent a31b607872
commit 62340387bb
7 changed files with 139 additions and 21 deletions

View File

@ -450,4 +450,22 @@
where site_id = #{siteId}
and device_category = #{deviceCategory}
</select>
<select id="selectEmsPointMatchExportList" parameterType="EmsPointMatch" resultType="com.xzzn.ems.domain.vo.DevicePointMatchExportVo">
select
point_name as pointName,
match_field as matchField,
data_point as dataPoint,
data_point_name as dataPointName,
data_unit as dataUnit,
is_alarm as isAlarm,
ip_address as ipAddress
from
ems_point_match
<where>
<if test="siteId != null and siteId != ''"> and site_id = #{siteId}</if>
<if test="deviceCategory != null and deviceCategory != ''"> and device_category = #{deviceCategory}</if>
</where>
</select>
</mapper>