lyhzzz 1 년 전
부모
커밋
3bbafa7b04
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 2
      src/main/java/com/fdkankan/ucenter/vo/request/AppSceneParam.java
  2. 1 1
      src/main/resources/mapper/ucenter/ScenePlusMapper.xml

+ 2 - 2
src/main/java/com/fdkankan/ucenter/vo/request/AppSceneParam.java

@@ -35,8 +35,8 @@ public class AppSceneParam extends RequestBase {
 
     private Set<String> copyNumSet;
     /**
-     * 是否是文保App 0否,1是
+     * 是否是文保App
      */
-    private Integer queryVrPano = 0;
+    private Boolean queryVrPano = false;
 
 }

+ 1 - 1
src/main/resources/mapper/ucenter/ScenePlusMapper.xml

@@ -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 ==0">
+        <if test="param.queryVrPano !=null and param.queryVrPano == false">
             and  e.location  != 7
         </if>
         AND ( p.scene_status = 1 OR p.scene_status = -2)