远程控制修改
This commit is contained in:
@ -81,6 +81,18 @@
|
||||
<if test="vo.stationId != null and vo.stationId !=''">
|
||||
and s.station_id = #{vo.stationId}
|
||||
</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>
|
||||
order by s.create_time desc
|
||||
</select>
|
||||
|
||||
Reference in New Issue
Block a user