1234567891011121314151617181920 |
- package com.kmall.admin.dao.statistics;
- import com.kmall.admin.entity.WechatFollowersEntity;
- import com.kmall.manager.dao.BaseDao;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * Dao
- *
- * @author emato
- * @email admin@qhdswl.com
- * @date 2020-09-03 11:39:37
- */
- public interface WechatFollowersDao extends BaseDao<WechatFollowersEntity> {
- List<WechatFollowersEntity> queryMonthlyWechatFollowers(@Param("startMonth") String startMonth,@Param("endMonth") String endMonth,@Param("merchSn") String merchSn);
- }
|