admin
2021-09-13 8ce7c720e4e7a604b0ff770349b5556f39d37759
fanli/src/main/java/com/yeshi/fanli/service/inter/count/TaoBaoOrderCountService.java
@@ -1,27 +1,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;
}
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;
}