package com.kmall.admin.dao.statistics; import com.kmall.admin.entity.MonthlySalesGrowthEntity; import org.apache.ibatis.annotations.Param; import java.util.List; import java.util.Map; /** * @author zhangchuangbiao * @version 1.0 * 2020-09-01 16:16 */ public interface MonthlyCustomersDao { List queryMonthlyCustomers(@Param("startMonth") String startMonth, @Param("endMonth") String endMonth, @Param("merchSn") String merchSn); }