yujian
2019-08-16 b2901a0793cfe3a1eb04318c1f8786c988e83108
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.yeshi.fanli.service.impl.user;
 
import java.util.Date;
 
import javax.annotation.Resource;
 
import org.springframework.stereotype.Service;
 
import com.yeshi.fanli.dao.mybatis.user.UserSystemCouponGiveRecordMapper;
import com.yeshi.fanli.entity.bus.user.UserSystemCouponGiveRecord;
import com.yeshi.fanli.service.inter.user.UserSystemCouponGiveRecordService;
 
@Service
public class UserSystemCouponGiveRecordServiceImpl implements UserSystemCouponGiveRecordService{
 
    @Resource
    private UserSystemCouponGiveRecordMapper userSystemCouponGiveRecordMapper;
    
    
    @Override
    public void insertSelective(UserSystemCouponGiveRecord record) {
        userSystemCouponGiveRecordMapper.insertSelective(record);
    }
    
    @Override
    public void updateRecord(Long receiveUid, Long giveUid, Long couponId) {
        UserSystemCouponGiveRecord record = userSystemCouponGiveRecordMapper.getRecordByUidAndCouponId(giveUid, couponId);
        if (record != null) {
            UserSystemCouponGiveRecord giveRecord = new UserSystemCouponGiveRecord();
            giveRecord.setId(record.getId());
            giveRecord.setReceiveUid(receiveUid);
            giveRecord.setReceiveTime(new Date());
            userSystemCouponGiveRecordMapper.updateByPrimaryKeySelective(giveRecord);
        }
    }
}