WechatFollowersDao.java 542 B

1234567891011121314151617181920
  1. package com.kmall.admin.dao.statistics;
  2. import com.kmall.admin.entity.WechatFollowersEntity;
  3. import com.kmall.manager.dao.BaseDao;
  4. import org.apache.ibatis.annotations.Param;
  5. import java.util.List;
  6. /**
  7. * Dao
  8. *
  9. * @author emato
  10. * @email admin@qhdswl.com
  11. * @date 2020-09-03 11:39:37
  12. */
  13. public interface WechatFollowersDao extends BaseDao<WechatFollowersEntity> {
  14. List<WechatFollowersEntity> queryMonthlyWechatFollowers(@Param("startMonth") String startMonth,@Param("endMonth") String endMonth,@Param("merchSn") String merchSn);
  15. }