yujian
2020-04-16 a1cc60298bd8b9cbddb29ad7c5e8e59ea1ee790c
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
package com.yeshi.fanli.service.inter.count;
 
import java.util.Map;
 
 
 
public interface TaoBaoOrderCountService {
 
    /**
     * 统计--订单类型区分
     * @return
     * @throws Exception
     */
    public Map<String, Object> countByOdrerType() throws Exception;
 
    /**
     * 统计今日订单
     * @return
     */
    public int countToday() throws Exception;
 
    /**
     * 统计昨日订单
     * @return
     */
    public int countYesterday() throws Exception;
}