package com.yeshi.fanli.service.inter.brand;
|
|
import java.util.List;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
import com.yeshi.fanli.entity.brand.BrandInfo;
|
import com.yeshi.fanli.exception.brand.BrandClassException;
|
import com.yeshi.fanli.exception.brand.BrandInfoException;
|
import com.yeshi.fanli.vo.brand.BrandInfoVO;
|
|
/**
|
* 品牌信息
|
*
|
* @author Administrator
|
*
|
*/
|
public interface BrandInfoService {
|
|
|
/**
|
* 保存品牌信息
|
* @param record
|
* @throws BrandClassException
|
* @throws Exception
|
*/
|
public void saveObject(MultipartFile file, BrandInfo record) throws BrandInfoException;
|
|
|
/**
|
* 批量删除
|
* @param list
|
* @return
|
*/
|
public int deleteBatchByPrimaryKey(List<Long> list);
|
|
|
/**
|
* 查询列表
|
* @param start
|
* @param count
|
* @param key
|
* @param state
|
* @return
|
*/
|
public List<BrandInfo> listQuery(long start, int count, String key, Long cid, Integer state);
|
|
public long countQuery(String key, Long cid, Integer state);
|
|
/**
|
* 查询品牌返回前端
|
* @param start
|
* @param count
|
* @param cid
|
* @return
|
* @throws BrandInfoException
|
*/
|
public List<BrandInfoVO> listBrandInfoCache(long start, int count, Long cid);
|
|
|
/**
|
* 品牌数量
|
* @param cid
|
* @return
|
* @throws BrandInfoException
|
*/
|
public long countBrandInfo(Long cid);
|
|
/**
|
* 有效店铺
|
* @param cid
|
* @return
|
*/
|
public List<BrandInfo> listValidBrandInfoCache(Long cid);
|
|
/**
|
* 查询分类下品牌
|
* @param cid
|
* @return
|
*/
|
public List<BrandInfo> listValidByCidToApp(Long cid);
|
|
|
/**
|
* 查询品牌以及对应商品
|
* @param start
|
* @param count
|
* @param cid
|
* @return
|
*/
|
public List<BrandInfoVO> listValidToApp(long start, int count, Long cid);
|
|
|
/**
|
* 新增商品或店铺信息
|
* @param start
|
* @param count
|
*/
|
public void addShopAndGoods(long start, int count);
|
|
|
public long countValidByCidToApp(Long cid);
|
|
|
public long countValidByCid(Long cid);
|
|
}
|