package com.kmall.admin.service.statistics; import com.kmall.admin.entity.MonthlySalesGrowthEntity; import com.kmall.admin.entity.WechatFollowersEntity; import java.util.List; import java.util.Map; /** * @author zhangchuangbiao * @version 1.0 * 2020-09-01 14:36 */ public interface MonthlyCustomersService { Map queryMonthlyCustomers(String startMonth, String endMonth, String merchSn,List dateList); Map top10ForProduct(String month, String week, String merchSn); Map top10ByBrandAndSupplier(String startDate, String endDate, String merchSn); Map queryWeeklyCustomers(String startWeek, String endWeek, String merchSn,List dateList); Map queryMonthlyWechatFollowers(String startMonth, String endMonth, String merchSn); void addWechatFollowers(WechatFollowersEntity wechatFollowersEntity); List> salesByCategory(String startMonth, String endMonth, String merchSn); Map monthlyCategory(String startMonth, String endMonth, String merchSn,List dateList); List exportSelectedMonthData(String startMonth, String endMonth, String merchSn, int size, Integer monthNumber); }