1、能力超市、基础设施、视频资源的列表查询增加gps坐标为空的判断
This commit is contained in:
parent
5d1b7da56a
commit
f0cc8cc5a9
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue