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_SpacesParamMapper;
|
import com.landtool.lanbase.modules.res.entity.Res_SpacesParam;
|
import com.landtool.lanbase.modules.res.entity.Res_SpacesParamWithBLOBs;
|
import com.landtool.lanbase.modules.res.service.ResSpacesParamService;
|
|
@Service("ResSpacesParamService")
|
public class ResSpacesParamServiceImpl implements ResSpacesParamService {
|
|
@Autowired
|
private Res_SpacesParamMapper resSpacesParamMapper;
|
|
@Override
|
public int deleteByPrimaryKey(int paramid) {
|
return resSpacesParamMapper.deleteByPrimaryKey(paramid);
|
}
|
|
@Override
|
public int insert(Res_SpacesParamWithBLOBs record) {
|
return resSpacesParamMapper.insert(record);
|
}
|
|
@Override
|
public int insertSelective(Res_SpacesParamWithBLOBs record) {
|
return resSpacesParamMapper.insertSelective(record);
|
}
|
|
@Override
|
public Res_SpacesParamWithBLOBs selectByPrimaryKey(int paramid) {
|
return resSpacesParamMapper.selectByPrimaryKey(paramid);
|
}
|
|
@Override
|
public int updateByPrimaryKeySelective(Res_SpacesParamWithBLOBs record) {
|
return resSpacesParamMapper.updateByPrimaryKeySelective(record);
|
}
|
|
@Override
|
public int updateByPrimaryKeyWithBLOBs(Res_SpacesParamWithBLOBs record) {
|
return resSpacesParamMapper.updateByPrimaryKeyWithBLOBs(record);
|
}
|
|
@Override
|
public int updateByPrimaryKey(Res_SpacesParam record) {
|
return resSpacesParamMapper.updateByPrimaryKey(record);
|
}
|
|
@Override
|
public List<Res_SpacesParam> selectByResSourceId(int resourceid) {
|
return resSpacesParamMapper.selectByResSourceId(resourceid);
|
}
|
}
|