@Query(value="select a.* from tb_cf_station_item a where a.item_name LIKE CONCAT('%',:name,'%') or MATCH(a.item_name, a.item_brief) AGAINST(CONCAT(:name,'*') IN BOOLEAN MODE) order by a.item_top desc,a.sort asc,a.create_time desc",nativeQuery=true)
@Query(value="select a.* from tb_cf_station_item a where a.item_name LIKE CONCAT('%',?1,'%') or MATCH(a.item_name, a.item_brief) AGAINST(CONCAT(?1,'*') IN BOOLEAN MODE) order by a.item_top desc,a.sort asc,a.create_time desc",nativeQuery=true)