Selaa lähdekoodia

用户标签报表

guozhaoshun 6 vuotta sitten
vanhempi
commit
1340b87ab7

+ 1 - 1
rankin-user-service/src/main/java/cn/rankin/userservice/repository/StmtRepository.java

@@ -26,6 +26,6 @@ public interface StmtRepository extends BasicJpaRepository<UserTag, String> {
             " AND if(?1 !='',tu.code LIKE CONCAT('%',?1,'%'),1=1) " +
             " AND if(?2 !='',tu.merchant_id=?2,1=1) " +
             " AND if(?3 !='',tu.campus_id=?3,1=1)  " +
-            " ORDER BY tu.gmt_created DESC if(?5 != null ,LIMIT ?4,?5 ) ",nativeQuery = true)
+            " ORDER BY tu.gmt_created DESC LIMIT ?4,?5  ",nativeQuery = true)
     List<String> uidList(String code, String merchantId, String campusId, long start, Integer pageSize);
 }