MonthlyCustomersService.java 923 B

12345678910111213141516171819202122232425262728
  1. package com.kmall.admin.service.statistics;
  2. import com.kmall.admin.entity.WechatFollowersEntity;
  3. import java.util.List;
  4. import java.util.Map;
  5. /**
  6. * @author zhangchuangbiao
  7. * @version 1.0
  8. * 2020-09-01 14:36
  9. */
  10. public interface MonthlyCustomersService {
  11. Map<String, Object> queryMonthlyCustomers(String startMonth, String endMonth, String merchSn);
  12. Map<String, Object> top10ForProduct(String month, String week, String merchSn);
  13. Map<String, Object> top10ByBrandAndSupplier(String startDate, String endDate, String merchSn);
  14. Map<String, Object> queryWeeklyCustomers(String startWeek, String endWeek, String merchSn);
  15. Map<String, Object> queryMonthlyWechatFollowers(String startMonth, String endMonth, String merchSn);
  16. void addWechatFollowers(WechatFollowersEntity wechatFollowersEntity);
  17. List<Map<String,Object>> salesByCategory(String startMonth, String endMonth, String merchSn);
  18. }