admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
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.yeshi.fanli.service.inter.count;
 
import java.util.Date;
import java.util.List;
 
import com.yeshi.fanli.entity.admin.count.DailyCountOrder;
import com.yeshi.fanli.entity.admin.count.DailyCountOrder.DailyCountOrderEnum;
 
public interface DailyCountOrderService {
 
    /**
     * 查询统计
     * @param type
     * @param startTime
     * @param endTime
     * @param channel
     * @return
     * @throws Exception
     */
    public List<DailyCountOrder> getDailyCountList(String type, Date startTime, Date endTime, String channel) throws Exception;
 
    /**
     * 获取类型说明
     * @param type
     * @return
     */
    public String getTypeEnumDesc(String type);
 
    
    /**
     * 初始化统计数据
     * @param typeEnum
     * @throws Exception
     */
    public void initData(DailyCountOrderEnum typeEnum) throws Exception;
 
     
 
    
}