MonthlyCustomersService.java 284 B

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