yujian
2019-09-03 972d3bc71115ec977dccf835fbcd148da3bcc86c
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/integral/IntegralDetailMapper.java
@@ -17,7 +17,7 @@
    * @param uid
    * @return
    */
   Long selectCountByUid(@Param("uid") Long uid);
   Long selectCountByUid(@Param("uid") Long uid, @Param("type")Integer type);
   
   /**
    * 按用户ID和最大时间检索月份的数量
@@ -26,7 +26,7 @@
    * @param maxDate
    * @return
    */
   int selectMonthCountByUid(@Param("uid") Long uid, @Param("date") Date maxDate);
   int selectMonthCountByUid(@Param("uid") Long uid, @Param("date") Date maxDate, @Param("type")Integer type);
   
   
   /**
@@ -36,7 +36,7 @@
    * @param date
    * @return
    */
   Long selectCountByUidAndMaxCreateTime(@Param("uid") Long uid, @Param("date") Date date);
   Long selectCountByUidAndMaxCreateTime(@Param("uid") Long uid, @Param("date") Date date, @Param("type")Integer type);
   
   
   /**
@@ -46,7 +46,7 @@
    * @param date
    * @return
    */
   List<IntegralDetail> selectByMaxCreateTime(@Param("uid") Long uid, @Param("date") Date date, @Param("count") int count);
   List<IntegralDetail> selectByMaxCreateTime(@Param("uid") Long uid, @Param("date") Date date, @Param("count") int count, @Param("type")Integer type);
   
   
   /**
@@ -57,7 +57,7 @@
    * @param count
    * @return
    */
   List<IntegralDetail> selectByUidWithIndexId(@Param("uid") Long uid, @Param("id") Long id, @Param("count") int count);
   List<IntegralDetail> selectByUidWithIndexId(@Param("uid") Long uid, @Param("id") Long id, @Param("count") int count, @Param("type")Integer type);
   
   
   /**