Administrator
2018-10-30 c0c91fbda1ba601c4c8cb6d12fd43dfbe02eea5d
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.homemodule;
 
import javax.annotation.Resource;
 
import org.springframework.stereotype.Service;
 
import com.yeshi.fanli.dao.mybatis.homemodule.SpecialMapper;
import com.yeshi.fanli.entity.bus.homemodule.Special;
import com.yeshi.fanli.service.inter.homemodule.SpecialService;
 
 
@Service
public class SpecialServiceImpl implements SpecialService {
    
    @Resource
    private SpecialMapper specialMapper;
 
    
    @Override
    public int deleteByPrimaryKey(Long id) {
        return specialMapper.deleteByPrimaryKey(id);
    }
 
    @Override
    public int insert(Special record) {
        return specialMapper.insert(record);
    }
 
    @Override
    public int insertSelective(Special record) {
        return specialMapper.insertSelective(record);
    }
 
    @Override
    public Special selectByPrimaryKey(Long id) {
        return specialMapper.selectByPrimaryKey(id);
    }
 
    @Override
    public int updateByPrimaryKeySelective(Special record) {
        return specialMapper.updateByPrimaryKeySelective(record);
    }
 
    @Override
    public int updateByPrimaryKey(Special record) {
        return specialMapper.updateByPrimaryKey(record);
    }
 
}