package com.yeshi.fanli.service.inter.homemodule;
|
|
|
|
import java.util.List;
|
|
import com.yeshi.fanli.entity.bus.homemodule.SwiperBanner;
|
import com.yeshi.fanli.exception.banner.SwiperBannerException;
|
|
public interface SwiperBannerService {
|
|
public int deleteByPrimaryKey(Long id) throws SwiperBannerException;
|
|
public int insert(SwiperBanner record) throws SwiperBannerException;
|
|
public int insertSelective(SwiperBanner record) throws SwiperBannerException;
|
|
public SwiperBanner selectByPrimaryKey(Long id) throws SwiperBannerException;
|
|
public int updateByPrimaryKeySelective(SwiperBanner record) throws SwiperBannerException;
|
|
public int updateByPrimaryKey(SwiperBanner record) throws SwiperBannerException;
|
|
public List<SwiperBanner> query(long start, int count, String key, Integer sort) throws SwiperBannerException;
|
|
public long countQuery(String key) throws SwiperBannerException;
|
|
public int deleteBatchByPrimaryKey(List<Long> list) throws Exception;
|
|
}
|