| | |
| | | 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;
|
| | | }
|
| | | 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; |
| | | } |