Administrator
2018-12-25 4fa67c8de0fe4c3726a0b84db38316568768506c
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
package com.yeshi.fanli.service.impl.order;
 
import javax.annotation.Resource;
 
import org.springframework.stereotype.Service;
 
import com.yeshi.fanli.dao.mybatis.order.HongBaoOrderMapper;
import com.yeshi.fanli.entity.order.HongBaoOrder;
import com.yeshi.fanli.service.inter.order.HongBaoOrderService;
 
 
@Service
public class HongBaoOrderServiceImpl implements HongBaoOrderService {
    
    @Resource
    private HongBaoOrderMapper hongBaoOrderMapper;
 
 
    @Override
    public int insert(HongBaoOrder record) {
        return hongBaoOrderMapper.insert(record);
    }
 
    @Override
    public int insertSelective(HongBaoOrder record) {
        return hongBaoOrderMapper.insertSelective(record);
    }
 
    @Override
    public int updateByPrimaryKeySelective(HongBaoOrder record) {
        return hongBaoOrderMapper.updateByPrimaryKeySelective(record);
    }
 
    @Override
    public int updateByPrimaryKey(HongBaoOrder record) {
        return hongBaoOrderMapper.updateByPrimaryKey(record);
    }
 
    @Override
    public int deleteByPrimaryKey(Long id) {
        return hongBaoOrderMapper.deleteByPrimaryKey(id);
    }
 
    @Override
    public HongBaoOrder selectByPrimaryKey(Long id) {
        return hongBaoOrderMapper.selectByPrimaryKey(id);
    }
 
}