admin
2019-08-27 fe879975a3e8a0a1aa280fb839e02d159bfbcff8
fanli/src/main/java/com/yeshi/fanli/service/impl/user/UserSystemCouponGiveRecordServiceImpl.java
@@ -1,5 +1,7 @@
package com.yeshi.fanli.service.impl.user;
import java.util.List;
import javax.annotation.Resource;
import org.springframework.stereotype.Service;
@@ -20,4 +22,23 @@
      userSystemCouponGiveRecordMapper.insertSelective(record);
   }
   
   @Override
   public UserSystemCouponGiveRecord selectByPrimaryKey(Long id) {
      return userSystemCouponGiveRecordMapper.selectByPrimaryKey(id);
   }
   @Override
   public UserSystemCouponGiveRecord getRecordByUidAndCouponId(Long giveUid, Long couponId) {
      return userSystemCouponGiveRecordMapper.getRecordByUidAndCouponId(giveUid, couponId);
   }
   @Override
   public void updateByPrimaryKeySelective(UserSystemCouponGiveRecord giveRecord) {
      userSystemCouponGiveRecordMapper.updateByPrimaryKeySelective(giveRecord);
   }
   @Override
   public List<UserSystemCouponGiveRecord> overdueList(int count) {
      return userSystemCouponGiveRecordMapper.overdueList(count);
   }
}