远程控制修改

This commit is contained in:
2026-01-27 15:42:04 +08:00
parent 1295adb885
commit d8b1396b6f

View File

@ -81,6 +81,18 @@
<if test="vo.stationId != null and vo.stationId !=''"> <if test="vo.stationId != null and vo.stationId !=''">
and s.station_id = #{vo.stationId} and s.station_id = #{vo.stationId}
</if> </if>
<if test="vo.stationName != null and vo.stationName !=''">
and t.name like concat('%',#{vo.stationName},'%')
</if>
<if test="vo.intranetIp != null and vo.intranetIp !=''">
and s.intranet_ip like concat('%',#{vo.intranetIp},'%')
</if>
<if test="vo.ip != null and vo.ip !=''">
and s.ip like concat('%',#{vo.ip},'%')
</if>
<if test="vo.type != null and vo.type !=''">
and s.type = #{vo.type}
</if>
</where> </where>
order by s.create_time desc order by s.create_time desc
</select> </select>