1、能力超市、基础设施、视频资源的列表查询增加gps坐标为空的判断

This commit is contained in:
yitonglei 2022-07-25 14:01:45 +08:00
parent 5d1b7da56a
commit f0cc8cc5a9
1 changed files with 4 additions and 1 deletions

View File

@ -198,7 +198,10 @@
<if test = "map.checkStatus != null and map.checkStatus != ''"> <if test = "map.checkStatus != null and map.checkStatus != ''">
AND tcc.check_status IN (${map.checkStatus}) AND tcc.check_status IN (${map.checkStatus})
</if> </if>
AND tcc.gps_x != ''
AND tcc.gps_y != ''
AND tcc.gps_x IS NOT NULL
AND tcc.gps_y IS NOT NULL
<if test = "map.cameraName != null and map.cameraName != ''"> <if test = "map.cameraName != null and map.cameraName != ''">
AND tcc.channel_name LIKE CONCAT('%',#{map.cameraName},'%') AND tcc.channel_name LIKE CONCAT('%',#{map.cameraName},'%')
</if> </if>