Browse Source

修改后台模版管理和资源管理bug

liaoyitao 1 week ago
parent
commit
a6294b9cb5

+ 1 - 1
src/main/java/com/lqkj/link/module/zone/repository/GeomInfoRepository.java

@@ -92,7 +92,7 @@ public interface GeomInfoRepository extends JpaRepository<GeomInfo, String> {
92 92
 
93 93
 
94 94
     @Query(nativeQuery = true,
95
-        value = "select count(*) from geom_info where model_id in :infoIds and "
95
+        value = "select count(*) from geom_info where model_id in :infoIds"
96 96
     )
97 97
     Integer findByModelIdIn(List<Integer> infoIds);
98 98