yujian
2020-01-18 f4a0f2acc63d7785eab108419a4e16f5f688cb95
fanli/src/main/java/com/yeshi/fanli/service/inter/brand/BrandInfoService.java
@@ -1,6 +1,9 @@
package com.yeshi.fanli.service.inter.brand;
import java.util.Date;
import java.util.List;
import org.springframework.web.multipart.MultipartFile;
import com.yeshi.fanli.entity.brand.BrandInfo;
import com.yeshi.fanli.exception.brand.BrandClassException;
@@ -22,7 +25,7 @@
    * @throws BrandClassException
    * @throws Exception
    */
   public void saveObject(BrandInfo record) throws BrandInfoException;
   public void saveObject(MultipartFile file, BrandInfo record) throws BrandInfoException;
   
   /**
@@ -41,9 +44,9 @@
    * @param state
    * @return
    */
   public List<BrandInfo> listQuery(long start, int count, String key, Long cid, Integer state);
   public List<BrandInfo> listQuery(long start, int count, List<String> keys, Long cid, Integer state, Integer showState);
   public long countQuery(String key, Long cid, Integer state);
   public long countQuery(List<String> keys, Long cid, Integer state, Integer showState);
   /**
    * 查询品牌返回前端
@@ -53,7 +56,7 @@
    * @return
    * @throws BrandInfoException
    */
   public List<BrandInfoVO> listBrandInfoCache(long start, int count, Long cid);
   public List<BrandInfoVO> listBrandInfoCache(long start, int count, Long cid,String platform,String version);
   /**
@@ -86,7 +89,7 @@
    * @param cid
    * @return
    */
   public List<BrandInfoVO> listValidToApp(long start, int count, Long cid);
   public List<BrandInfoVO> listValidToApp(long start, int count, Long cid,String platform,String version);
   
   /**
@@ -95,6 +98,23 @@
    * @param count
    */
   public void addShopAndGoods(long start, int count);
   /**
    * 检索有效的品牌信息,按更新时间排序
    * @param page
    * @param pageSize
    * @return
    */
   public List<BrandInfo>  listValidOrderByUpdateTime(int page,int pageSize);
   /**
    * 添加品牌商品
    * @param brandList
    */
   public void addShopAndGoods(List<BrandInfo> brandList);
   public long countValidByCidToApp(Long cid);
@@ -102,4 +122,21 @@
   public long countValidByCid(Long cid);
   /**
    * 删除之前的
    * @param date
    */
   public void removeAgoByDate(Date date);
   public void updateOrder(Long id, Integer moveType) throws BrandInfoException;
   /**
    * 搜索关键词匹配品牌
    * @param key
    * @return
    */
   public BrandInfoVO listByAlikeName(String key,String platform,String version);
}