package com.landtool.lanbase.modules.res.service.impl;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
import com.landtool.lanbase.modules.res.dao.Res_ExtFileSourceMapper;
|
import com.landtool.lanbase.modules.res.entity.Res_ExtFileSource;
|
import com.landtool.lanbase.modules.res.service.ResExtFileSourceService;
|
|
|
@Service("ResExtFileSourceService")
|
public class ResExtFileSourceServiceImpl implements ResExtFileSourceService {
|
|
@Autowired
|
private Res_ExtFileSourceMapper resExtFileSourceMapper ;
|
|
@Override
|
public int deleteByPrimaryKey(int resourceid) {
|
|
return resExtFileSourceMapper.deleteByPrimaryKey(resourceid);
|
}
|
|
@Override
|
public int insert(Res_ExtFileSource record) {
|
return resExtFileSourceMapper.insert(record);
|
}
|
|
@Override
|
public int insertSelective(Res_ExtFileSource record) {
|
return resExtFileSourceMapper.insertSelective(record);
|
}
|
|
@Override
|
public Res_ExtFileSource selectByPrimaryKey(Integer resourceid) {
|
return resExtFileSourceMapper.selectByPrimaryKey(resourceid);
|
}
|
|
@Override
|
public int updateByPrimaryKeySelective(Res_ExtFileSource record) {
|
return resExtFileSourceMapper.updateByPrimaryKeySelective(record);
|
}
|
|
@Override
|
public int updateByPrimaryKey(Res_ExtFileSource record) {
|
return resExtFileSourceMapper.updateByPrimaryKey(record);
|
}
|
}
|