admin
2018-12-25 4cb15e222cd7d099d533ccbeb7f9a8cd99bf180c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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;
    
}