Administrator
2018-10-30 c0c91fbda1ba601c4c8cb6d12fd43dfbe02eea5d
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package com.yeshi.fanli.service.inter.goods;
 
import java.util.List;
 
import org.springframework.cache.annotation.Cacheable;
 
import com.yeshi.fanli.entity.bus.recommend.Honest;
 
public interface HonestService {
    List<Honest> getHonestList();
    
    
    List<Honest> getHonestListCache();
 
    Honest getOne(long id);
 
    /**
     * 
     * 方法说明: 查询列表总数
     * @author mawurui
     * createTime 2018年5月18日 下午4:44:56
     * @return
     */
    Integer getCount();
 
    /**
     * 
     * 方法说明: 分页查询列表
     * @author mawurui
     * createTime 2018年5月18日 下午4:59:29
     * @param i
     * @param key
     * @return
     */
    List<Honest> getHonestList(int i, String key);
 
    /**
     * 
     * 方法说明: 删除
     * @author mawurui
     * createTime 2018年5月18日 下午5:20:08
     * @param id
     */
    void deleteHonest(long id);
 
    /**
     * 
     * 方法说明: 修改
     * @author mawurui
     * createTime 2018年5月18日 下午5:25:34
     * @param honest
     */
    void updateHonest(Honest honest);
 
    /**
     * 
     * 方法说明: 反显
     * @author mawurui
     * createTime 2018年5月18日 下午5:31:56
     * @param id
     * @return
     */
    Honest getHonest(long id);
 
    /**
     * 
     * 方法说明: 添加
     * @author mawurui
     * createTime 2018年5月18日 下午5:33:40
     * @param honest
     */
    void addHonest(Honest honest);
}