@@ -34,6 +34,9 @@ public class AppSceneParam extends RequestBase {
private String sceneNum;
private Set<String> copyNumSet;
- private Boolean queryVrPano;
+ /**
+ * 是否是文保App 0否,1是
+ */
+ private Integer queryVrPano = 0;
}
@@ -50,7 +50,7 @@
FROM t_scene_plus p
LEFT JOIN t_scene_plus_ext e on p.id = e.plus_id
<include refid="commonWhere"></include>
- <if test="param.queryVrPano !=null and param.queryVrPano ">
+ <if test="param.queryVrPano !=null and param.queryVrPano ==0">
and e.location != 7
</if>
AND ( p.scene_status = 1 OR p.scene_status = -2)