1
0

MonthlyCustomersDao.java 826 B

1234567891011121314151617181920212223
  1. package com.kmall.admin.dao.statistics;
  2. import com.kmall.admin.entity.MonthlySalesGrowthEntity;
  3. import org.apache.ibatis.annotations.Param;
  4. import java.util.List;
  5. import java.util.Map;
  6. /**
  7. * @author zhangchuangbiao
  8. * @version 1.0
  9. * 2020-09-01 16:16
  10. */
  11. public interface MonthlyCustomersDao {
  12. List<MonthlySalesGrowthEntity> queryMonthlyCustomers(@Param("startMonth") String startMonth, @Param("endMonth") String endMonth, @Param("merchSn") String merchSn);
  13. List<MonthlySalesGrowthEntity> top10ForProduct(@Param("month") String month, @Param("week") String week);
  14. List<MonthlySalesGrowthEntity> top10ByBrand(@Param("startDate") String startDate, @Param("endDate") String endDate);
  15. List<MonthlySalesGrowthEntity> top10BySupplier(@Param("startDate")String startDate, @Param("endDate") String endDate);
  16. }