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);
|
}
|
|
}
|