package com.landtool.lanbase.modules.res.service.impl;
|
|
import java.util.List;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
import com.landtool.lanbase.modules.res.dao.Res_ExtDataSourceMapper;
|
import com.landtool.lanbase.modules.res.entity.Res_ExtDataSource;
|
import com.landtool.lanbase.modules.res.service.ResExtDataSourceService;
|
|
@Service("ResExtDataSourceService")
|
public class ResExtDataSourceServiceImpl implements ResExtDataSourceService {
|
@Autowired
|
private Res_ExtDataSourceMapper res_extDataSourceMapper;
|
|
@Override
|
public int deleteByPrimaryKey(Integer datasourceid) {
|
return res_extDataSourceMapper.deleteByPrimaryKey(datasourceid);
|
}
|
|
@Override
|
public int insert(Res_ExtDataSource record) {
|
return res_extDataSourceMapper.insert(record);
|
}
|
|
@Override
|
public int insertSelective(Res_ExtDataSource record) {
|
return res_extDataSourceMapper.insertSelective(record);
|
}
|
|
@Override
|
public Res_ExtDataSource selectByPrimaryKey(Integer datasourceid) {
|
return res_extDataSourceMapper.selectByPrimaryKey(datasourceid);
|
}
|
|
@Override
|
public int updateByPrimaryKeySelective(Res_ExtDataSource record) {
|
return res_extDataSourceMapper.updateByPrimaryKeySelective(record);
|
}
|
|
@Override
|
public int updateByPrimaryKey(Res_ExtDataSource record) {
|
return res_extDataSourceMapper.updateByPrimaryKey(record);
|
}
|
|
@Override
|
public List <Res_ExtDataSource> selectAll(Res_ExtDataSource record) {
|
return res_extDataSourceMapper.selectAll(record);
|
}
|
|
@Override
|
public int selectlist(Res_ExtDataSource record) {
|
return res_extDataSourceMapper.selectlist(record);
|
}
|
|
@Override
|
public List<Res_ExtDataSource> SelectDataSource(Res_ExtDataSource res_extDataSource) {
|
return res_extDataSourceMapper.SelectDataSource(res_extDataSource);
|
}
|
|
|
}
|