admin
2022-04-21 2464548977f4720bc8fceeb5d999c1a3852c2d10
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
package com.yeshi.makemoney.app.service.inter.goldcorn;
 
import com.yeshi.makemoney.app.entity.goldcorn.GoldCornConsumeRecord;
import com.yeshi.makemoney.app.exception.goldcorn.GoldCornConsumeRecordException;
import com.yeshi.makemoney.app.service.query.goldcorn.GoldCornConsumeRecordQuery;
 
import java.util.List;
 
 
public interface GoldCornConsumeRecordService {
 
    /**
     * 获取列表
     * @param goldCornConsumeRecordQuery
     * @param page
     * @param pageSize
     * @return
     */
    public List<GoldCornConsumeRecord> list(GoldCornConsumeRecordQuery goldCornConsumeRecordQuery, int page, int pageSize) ;
 
    /**
     * 
     */
    public long count(GoldCornConsumeRecordQuery goldCornConsumeRecordQuery) ;
 
    /**
     * 
     */
    public GoldCornConsumeRecord get(String id) ;
 
    /**
     * 
     */
    public void add(GoldCornConsumeRecord goldCornConsumeRecord)  throws GoldCornConsumeRecordException;
 
    /**
     * 
     */
    public void update(GoldCornConsumeRecord goldCornConsumeRecord) ;
 
    /**
     * 
     */
    public void delete(List<String> idList) ;
 
 
}