StatisticsDataDayService.java 896 B

123456789101112131415161718192021222324252627
  1. package com.cyksj.service.mange.statistics;
  2. import com.cyksj.model.entity.*;
  3. import java.util.Date;
  4. import java.util.List;
  5. import java.util.Map;
  6. /*
  7. *项目名: netflix
  8. *文件名: StatisticsDataDayService
  9. *创建者: JavaZou
  10. *创建时间:2023/7/6 13:38
  11. */
  12. public interface StatisticsDataDayService {
  13. List<StatisticsFashionGoodsData> statisticsFashionGoodsData(Date yesZeroDate, Date thisZeroDate, Boolean today);
  14. List<RegisterAccountData> statisticsRegisterAccountData(Date yesZeroDate, Date thisZeroDate, Boolean today);
  15. List<AppleOneData> statisticsAppleOneData(Date yesZeroDate, Date thisZeroDate, Boolean today);
  16. List<StreamingAccountData> statisticsStreamingAccountData(Date yesZeroDate, Date thisZeroDate, Boolean today);
  17. List<RealGoodsData> statisticsRealGoodsData(Date yesZeroDate, Date thisZeroDate, Boolean today);
  18. Map<String, List<GoodsDonSku>> getAppleOneMap();
  19. }