admin
2020-04-13 dd5b15229cb15459fa7c31ccea77dac28cbfafbd
fanli/src/main/java/com/yeshi/fanli/service/inter/homemodule/HomeNavbarService.java
@@ -42,17 +42,8 @@
    * @throws HomeNavbarException
    * @throws Exception
    */
   public void updateOrder(Long id, Integer moveType) throws HomeNavbarException, Exception;
   public void updateOrder(Long id, Integer moveType, Integer sex) throws HomeNavbarException, Exception;
   /**
    * 后端列表查询-同时super
    * @param start
    * @param count
    * @param key
    * @return
    */
   public List<HomeNavbar> listQueryAndBusinessSystem(long start, int count, String key);
   
   /**
    * 后端查询
@@ -61,16 +52,16 @@
    * @param key
    * @return
    */
   public List<HomeNavbar> listQuery(long start, int count, String key);
   public List<HomeNavbar> listQuery(long start, int count, String key,  Integer sex);
   
   public long countlistQuery(String key);
   public long countlistQuery(String key,  Integer sex);
   
   
   /**
    * 查询有效导航栏
    * @return
    */
   public List<HomeNavbar> listQueryEffective();
   public List<HomeNavbar> listQueryEffectiveNavbar();
   
   /**
    * 根据分类查询有效导航栏
@@ -78,5 +69,18 @@
    * @return
    */
   public HomeNavbar getEffectiveByClassId(@Param("classId") Long classId);
   /**
    * 默认导航栏
    * @return
    */
   public List<HomeNavbar> listQueryDefaultNavbar(Integer sex);
   /**
    *  固定的导航栏
    * @return
    */
   public List<HomeNavbar> listQueryFixedNavbar();
   
}