1234567891011121314151617181920212223242526272829303132 |
- package com.kmall.admin.service.statistics;
- 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<String, Object> queryMonthlyCustomers(String startMonth, String endMonth, String merchSn);
- Map<String, Object> top10ForProduct(String month, String week, String merchSn);
- Map<String, Object> top10ByBrandAndSupplier(String startDate, String endDate, String merchSn);
- Map<String, Object> queryWeeklyCustomers(String startWeek, String endWeek, String merchSn);
- Map<String, Object> queryMonthlyWechatFollowers(String startMonth, String endMonth, String merchSn);
- void addWechatFollowers(WechatFollowersEntity wechatFollowersEntity);
- List<Map<String,Object>> salesByCategory(String startMonth, String endMonth, String merchSn);
- Map<String, Object> monthlyCategory(String startMonth, String endMonth, String merchSn);
- Map<String, Object> exportSelectedMonthData(String startMonth, String endMonth, String merchSn, int size);
- }
|