yujian
2019-08-01 ba94d20eea2cc91a57f4ffed9f09ee0eb6352bfc
fanli/src/main/java/com/yeshi/fanli/service/inter/brand/BrandClassShopService.java
@@ -17,14 +17,6 @@
 */
public interface BrandClassShopService {
   /**
    * 查询有效分类
    *
    * @return
    */
   public List<BrandClassShop> listEffective(long start, int count, Long cid);
   public long countEffective(Long cid);
   /**
    * 是否存在
@@ -63,7 +55,7 @@
    * @param state
    * @throws BrandClassShopException
    */
   public void changeShopInfo(MultipartFile file, Long id, Long cid, String shopName, Integer state, Integer top)
   public void changeShopInfo(MultipartFile file, Long id, Long cid, String shopName, Integer state, Integer top,String key)
         throws BrandClassShopException;
   
   
@@ -92,5 +84,25 @@
    * @param shopId
    */
   public void addClick(Long shopId);
   /**
    * 根据分类id进行删除
    * @param list
    */
   public void deleteBatchByClassId(List<Long> list);
   /**
    * 更新品牌商品
    */
   public void updateShopGoods();
   /**
    * 店铺列表
    * @param page
    * @param cid
    * @return
    */
   public JSONObject listEffectiveCacheV2(int page, Long cid);
   
}