yujian
2019-03-06 6d25430971ced96d9304f31d2e0bf75cc64c2626
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.yeshi.fanli.service.impl.push;
 
import java.util.List;
 
import javax.annotation.Resource;
 
import org.springframework.stereotype.Service;
 
import com.yeshi.fanli.dao.mybatis.push.PushCouponRecordMapper;
import com.yeshi.fanli.entity.push.PushCouponRecord;
import com.yeshi.fanli.service.inter.push.PushCouponRecordService;
 
@Service
public class PushCouponRecordServiceImpl implements PushCouponRecordService {
 
 
    @Resource
    private PushCouponRecordMapper pushCouponRecordMapper;
 
    @Override
    public int deleteByPrimaryKey(Long id) {
        return pushCouponRecordMapper.deleteByPrimaryKey(id);
    }
 
    @Override
    public int insert(PushCouponRecord record) {
        return pushCouponRecordMapper.insert(record);
    }
 
    @Override
    public int insertSelective(PushCouponRecord record) {
        return pushCouponRecordMapper.insertSelective(record);
    }
 
    @Override
    public PushCouponRecord selectByPrimaryKey(Long id) {
        return pushCouponRecordMapper.selectByPrimaryKey(id);
    }
 
    @Override
    public int updateByPrimaryKeySelective(PushCouponRecord record) {
        return pushCouponRecordMapper.updateByPrimaryKeySelective(record);
    }
 
    @Override
    public int updateByPrimaryKey(PushCouponRecord record) {
        return pushCouponRecordMapper.updateByPrimaryKey(record);
    }
 
    @Override
    public long countByPushId(Long pushId) {
        return pushCouponRecordMapper.countByPushId(pushId);
    }
 
    @Override
    public List<PushCouponRecord> listByUid(Long uid) {
        return pushCouponRecordMapper.listByUid(uid);
    }
 
 
}