forked from kidgrow-microservices-platform

zhaoxiaohao
2020-06-24 a8bf44754f50d0b0a65f0f2d4beefc131261e35d
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
package com.kidgrow.oprationcenter.service;
 
import com.kidgrow.oprationcenter.model.ConsumptionRecord;
import com.kidgrow.common.model.PageResult;
import com.kidgrow.common.service.ISuperService;
 
import java.util.List;
import java.util.Map;
 
/**
 * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
 * @Description: <br>
 * @Project: 运营中心<br>
 * @CreateDate: Created in 2020-06-23 15:07:14 <br>
 * @Author: <a href="411269194@kidgrow.com">houruijun</a>
 * @version 1.0
 */
public interface IConsumptionRecordService extends ISuperService<ConsumptionRecord> {
    /**
     * 列表
     * @param params
     * @return
     */
    PageResult<ConsumptionRecord> findList(Map<String, Object> params);
 
    /**
     * 自定义条件查询所有的列表
     * @param params
     * @return
     */
    List<ConsumptionRecord> findAllList(Map<String, Object> params);
 
 
    /**
    * 根据ConsumptionRecord对象当做查询条件进行查询
    * @param consumptionRecord
    * @return ConsumptionRecord对象
    */
    ConsumptionRecord findByObject(ConsumptionRecord consumptionRecord);
}