From 61c21f17b1ad94e4b0018c7e385195bab21b0b5c Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期一, 09 九月 2019 19:00:03 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/div' into div

---
 fanli/src/main/java/com/yeshi/fanli/service/impl/user/UserSystemCouponGiveRecordServiceImpl.java |   31 +++++++++++++++++++++++++++++++
 1 files changed, 31 insertions(+), 0 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/user/UserSystemCouponGiveRecordServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/user/UserSystemCouponGiveRecordServiceImpl.java
index ea5cef5..2f0867e 100644
--- a/fanli/src/main/java/com/yeshi/fanli/service/impl/user/UserSystemCouponGiveRecordServiceImpl.java
+++ b/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,33 @@
 		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);
+	}
+	
+	@Override
+	public List<UserSystemCouponGiveRecord> overdueListByUser(Long uid) {
+		return userSystemCouponGiveRecordMapper.overdueListByUser(uid);
+	}
+
+	@Override
+	public UserSystemCouponGiveRecord getByReceiveId(Long receiveId) {
+		return userSystemCouponGiveRecordMapper.getByReceiveId(receiveId);
+	}
 }

--
Gitblit v1.8.0