yujian
2019-11-05 a980ade25b3dc1a7da482e37113f2935a2719c0b
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/integral/IntegralExchangeRecordMapper.java
@@ -1,7 +1,5 @@
package com.yeshi.fanli.dao.mybatis.integral;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.yeshi.fanli.dao.BaseMapper;
@@ -9,11 +7,12 @@
public interface IntegralExchangeRecordMapper extends BaseMapper<IntegralExchangeRecord> {
   
   /**
    * 查询今日兑换情况
    *  统计今日兑换情况
    * @param list
    * @return
    */
   List<Long> listRecordByExchangeIds(@Param("list") List<Long> list);
   long countRecordByUid(@Param("exchangeId") Long exchangeId, @Param("uid") Long uid, @Param("today") Integer today);
}