admin
2019-08-19 9c09cead959dbeef292628f345e5f80c30fc3d17
fanli/src/main/java/com/yeshi/fanli/service/inter/user/UserSystemCouponGiveRecordService.java
@@ -1,5 +1,7 @@
package com.yeshi.fanli.service.inter.user;
import java.util.List;
import com.yeshi.fanli.entity.bus.user.UserSystemCouponGiveRecord;
public interface UserSystemCouponGiveRecordService {
@@ -12,7 +14,23 @@
    * @param giveUid
    * @param couponId
    */
   public void updateRecord(Long receiveUid, Long giveUid, Long couponId);
   public void updateByPrimaryKeySelective(UserSystemCouponGiveRecord giveRecord);
   /**
    * 查询赠送记录
    * @param giveUid
    * @param couponId
    * @return
    */
   public UserSystemCouponGiveRecord getRecordByUidAndCouponId(Long giveUid, Long couponId);
   /**
    * 未领取退回券
    * @param count
    * @return
    */
   public List<UserSystemCouponGiveRecord> overdueList(int count);
}