package com.landtool.lanbase.modules.res.service.impl; import java.util.List; import java.util.Map; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.landtool.lanbase.modules.res.dao.Res_BusinessRefMapper; import com.landtool.lanbase.modules.res.entity.Res_BusinessRef; import com.landtool.lanbase.modules.res.entity.Res_Catalog; import com.landtool.lanbase.modules.res.entity.Res_MainInfo; import com.landtool.lanbase.modules.res.service.ResBusinessRefService; @Service("resBusinessRefService") public class ResBusinessRefServiceImpl implements ResBusinessRefService { @Autowired private Res_BusinessRefMapper resBusinessRefMapper; @Override public int deleteByPrimaryKey(Integer resourceid) { return resBusinessRefMapper.deleteByPrimaryKey(resourceid); } @Override public int insert(Res_BusinessRef record) { return resBusinessRefMapper.insert(record); } @Override public int insertSelective(Res_BusinessRef record) { return resBusinessRefMapper.insertSelective(record); } @Override public Res_BusinessRef selectByPrimaryKey(Integer resourceid) { return resBusinessRefMapper.selectByPrimaryKey(resourceid); } @Override public int updateByPrimaryKeySelective(Res_BusinessRef record) { return resBusinessRefMapper.updateByPrimaryKeySelective(record); } @Override public int updateByPrimaryKey(Res_BusinessRef record) { return resBusinessRefMapper.updateByPrimaryKey(record); } @Override public List selectResBusinesssRef(Res_BusinessRef record) { return resBusinessRefMapper.selectResBusinesssRef(record); } @Override public List getResBusinesssRefList(Res_BusinessRef resBusinessRef) { return resBusinessRefMapper.getResBusinesssRefList(resBusinessRef); } @Override public List getResourceSetGLTC(Res_BusinessRef record) { return resBusinessRefMapper.getResourceSetGLTC(record); } @Override public List getResourceSelectGLTC(Res_MainInfo resMainInfo) { return resBusinessRefMapper.getResourceSelectGLTC(resMainInfo); } @Override public List getResourceGLTCCatalog(Map map) { return resBusinessRefMapper.getResourceGLTCCatalog(map); } @Override public List getResourceGLTCCatalogList(Map map) { return resBusinessRefMapper.getResourceGLTCCatalogList(map); } // @Override // public int addResourceSelectGLTC(Res_BusinessRef record) { // return resBusinessRefMapper.addResourceSelectGLTC(record); // } @Override public int deleteByResourceid(Integer resourceid) { return resBusinessRefMapper.deleteByResourceid(resourceid); } @Override public int selectCountByResourceid(Integer resourceid) { return resBusinessRefMapper.selectCountByResourceid(resourceid); } }