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_ExtInterFaceServiceMapper; import com.landtool.lanbase.modules.res.entity.Res_ExtInterFaceService; import com.landtool.lanbase.modules.res.service.ResExtInterFaceService; @Service("ResExtInterFaceService") public class ResExtInterFaceServiceImpl implements ResExtInterFaceService { @Autowired private Res_ExtInterFaceServiceMapper res_extInterFaceServiceMapper; @Override public int deleteByPrimaryKey(Integer resourceid) { return res_extInterFaceServiceMapper.deleteByPrimaryKey(resourceid); } @Override public int insert(Res_ExtInterFaceService record) { return res_extInterFaceServiceMapper.insert(record); } @Override public int insertSelective(Res_ExtInterFaceService record) { return res_extInterFaceServiceMapper.insertSelective(record); } @Override public Res_ExtInterFaceService selectByPrimaryKey(Integer resourceid) { return res_extInterFaceServiceMapper.selectByPrimaryKey(resourceid); } @Override public int updateByPrimaryKeySelective(Res_ExtInterFaceService record) { return res_extInterFaceServiceMapper.updateByPrimaryKeySelective(record); } @Override public int updateByPrimaryKey(Res_ExtInterFaceService record) { return res_extInterFaceServiceMapper.updateByPrimaryKey(record); } @Override public int isExistContextPath(String contextPth){ return res_extInterFaceServiceMapper.isExistContextPath(contextPth); } }