yujian
2019-12-17 d8e6fe75c7bfb14c73da86b79991bda18d94a105
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/user/UserSystemCouponGiveRecordMapper.java
@@ -43,4 +43,25 @@
    */
   UserSystemCouponGiveRecord getByReceiveId(@Param("receiveId") Long receiveId);
   
   /**
    * 查询券赠送信息
    * @param count
    * @return
    */
   UserSystemCouponGiveRecord getByCouponId(@Param("couponId") Long couponId);
   /**
    * 查询赠送记录
    * @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);
}