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_FileSource_WayMapper;
|
import com.landtool.lanbase.modules.res.entity.Res_FileSource_Way;
|
import com.landtool.lanbase.modules.res.service.ResFileSourceWayService;
|
|
@Service("ResFileSourceWay")
|
public class ResFileSourceWayServiceImpl implements ResFileSourceWayService {
|
|
@Autowired
|
private Res_FileSource_WayMapper resFileSourceWayMapper;
|
|
@Override
|
public int deleteByPrimaryKey(Integer id) {
|
return resFileSourceWayMapper.deleteByPrimaryKey(id);
|
}
|
|
@Override
|
public int insert(Res_FileSource_Way record) {
|
return resFileSourceWayMapper.insert(record);
|
}
|
|
@Override
|
public int insertSelective(Res_FileSource_Way record) {
|
return resFileSourceWayMapper.insertSelective(record);
|
}
|
|
@Override
|
public Res_FileSource_Way selectByPrimaryKey(Integer id) {
|
return resFileSourceWayMapper.selectByPrimaryKey(id);
|
}
|
|
@Override
|
public int updateByPrimaryKeySelective(Res_FileSource_Way record) {
|
return resFileSourceWayMapper.updateByPrimaryKeySelective(record);
|
}
|
|
@Override
|
public int updateByPrimaryKeyWithBLOBs(Res_FileSource_Way record) {
|
return resFileSourceWayMapper.updateByPrimaryKeyWithBLOBs(record);
|
}
|
|
@Override
|
public int updateByPrimaryKey(Res_FileSource_Way record) {
|
return resFileSourceWayMapper.updateByPrimaryKey(record);
|
}
|
|
@Override
|
public List<Res_FileSource_Way> selectById(int resMainInfoId) {
|
return resFileSourceWayMapper.selectById(resMainInfoId);
|
}
|
}
|