1234567891011121314151617 |
- 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<MonthlySalesGrowthEntity> queryMonthlyCustomers(@Param("startMonth") String startMonth, @Param("endMonth") String endMonth, @Param("merchSn") String merchSn);
- }
|