yujian
2019-09-03 2ddf5b8a1290123e2d1c05bcc851ec35cd217afc
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.yeshi.fanli.service.inter.homemodule;
 
import java.util.List;
 
import com.yeshi.fanli.entity.bus.homemodule.SpecialPlace;
import com.yeshi.fanli.exception.homemodule.SpecialPlaceException;
 
public interface SpecialPlaceService {
 
    public SpecialPlace selectByPrimaryKey(Long id);
    
    /**
     * 保存、修改
     * @param record
     * @throws SpecialPlaceException
     * @throws Exception
     */
    public void saveObject(SpecialPlace record) throws SpecialPlaceException, Exception;
 
    /**
     * 批量删除
     * @param list
     * @return
     * @throws Exception
     */
    public int deleteByPrimaryKeyList(List<Long> list) throws Exception;
 
    /**
     * 后端查询
     * @param start
     * @param count
     * @param key
     * @return
     * @throws Exception
     */
    public List<SpecialPlace> listQuery(long start, int count, String key) throws Exception;
 
    public long countQuery(String key);
 
    /**
     * 获取所有专题位置
     * @return
     */
    public List<SpecialPlace> getEffectiveList();
 
}