package com.kmall.schedule.dao; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Component; import java.util.List; import java.util.Map; /** * @author 门店活动统计mapper * @version 1.0 * 2019-05-25 15:24 */ @Component public interface QzStoreTopicStatisMapper { /** * 查询支付成功或退款成功的门店活动订单 * @return */ List queryTicketStoreTopicByPaySuccess(@Param("statusList")Integer[] statusList); /** * 更新统计数据 * * @return */ int updateStoreTopicStat(Map params); /** * 统计门店活动订单的支付单数,支付人数,应收金额,支付件数,订单实付金额 * @param queryMap * @return */ Map getStatDataByStoreTopicId(Map queryMap); /** * 查询支付成功或退款成功的门店活动订单 * @return */ List queryCampStoreTopicByPaySuccess(@Param("statusList")Integer[] statusList); }