admin
2019-09-22 b9f8ef2c4737b6e6be4b12fc8f7bafb033bfcfe5
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/user/UserSystemCouponGiveRecordMapper.java
@@ -25,4 +25,36 @@
    * @return
    */
   List<UserSystemCouponGiveRecord> overdueList(@Param("count") int count);
   /**
    * 赠送超时未领取的
    * @param count
    * @return
    */
   List<UserSystemCouponGiveRecord> overdueListByUser(@Param("uid") Long uid);
   /**
    * 领取的id
    * @param count
    * @return
    */
   UserSystemCouponGiveRecord getByReceiveId(@Param("receiveId") Long receiveId);
   /**
    * 查询赠送记录
    * @param start
    * @param count
    * @param type
    * @param state
    * @return
    */
   List<UserSystemCouponGiveRecord> listGiveRecord(@Param("start") long start, @Param("count") int count,
         @Param("type") String type, @Param("state")Integer state);
   long countGiveRecord(@Param("type") String type, @Param("state")Integer state);
}