MonthlyCustomersService.java 534 B

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