admin
2021-12-09 f609ca35ee2946acd0ff04b7ac1aa61f75a2e4a1
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.ks.app.service.inter.feedback;
 
import com.ks.app.entity.feedback.Advice;
import com.ks.app.service.query.feedback.AdviceQuery;
 
import java.util.List;
 
 
public interface AdviceService {
 
    /**
     * 获取列表
     * @param adviceQuery
     * @param page
     * @param pageSize
     * @return
     */
    public List<Advice> list(AdviceQuery adviceQuery, int page, int pageSize) ;
 
    /**
     * 
     */
    public long count(AdviceQuery adviceQuery) ;
 
    /**
     * 
     */
    public Advice get(String id) ;
 
    /**
     * 
     */
    public void add(Advice advice)  throws Exception;
 
    /**
     * 
     */
    public void update(Advice advice) ;
 
    /**
     * 
     */
    public void delete(List<String> idList) ;
 
 
}