1.fix tag filter

main
Gary 9 months ago
parent 16372254d2
commit 3ca5beff5c

@ -19,10 +19,10 @@ public interface TagDao extends JpaRepository<Tag, String>, JpaSpecificationExec
@Query(value = "select * from tb_tag_info where parent_id='' order by rand() limit ?1 ", nativeQuery = true)
List<Tag> random(int limit);
@Query(value = "select * from tb_tag_info where state=1 and parent_id=(select id from tb_tag_info where name_ch='语言' and level=1 limit 1) ", nativeQuery = true)
@Query(value = "select * from tb_tag_info where state=1 and parent_id=(select id from tb_tag_info where name_en='Language' and level=1 limit 1) ", nativeQuery = true)
List<Tag> getLanguageList();
@Query(value = "select * from tb_tag_info where state=1 and is_show=1 and not name_ch='语言' order by create_time", nativeQuery = true)
@Query(value = "select * from tb_tag_info where state=1 and is_show=1 and not name_en='Language' order by create_time", nativeQuery = true)
List<Tag> getStyleList();
@Query(value = "select * from tb_tag_info where state=1 and is_show=1 order by create_time", nativeQuery = true)

Loading…
Cancel
Save