平台修改意见20251120-优化点位清单导出内容
This commit is contained in:
@ -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>
|
||||
Reference in New Issue
Block a user