MonthlyCustomersService.java 437 B

1234567891011121314151617
  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. }