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_ExtThemeMapMapper; import com.landtool.lanbase.modules.res.entity.Res_ExtThemeMap; import com.landtool.lanbase.modules.res.service.ResExtThemeMapService; @Service("resExtThemeMapService") public class ResExtThemeMapServiceImpl implements ResExtThemeMapService { @Autowired private Res_ExtThemeMapMapper resExtThemeMapMapper; @Override public int deleteByPrimaryKey(int resourceid) { return resExtThemeMapMapper.deleteByPrimaryKey(resourceid); } @Override public int insert(Res_ExtThemeMap record) { return resExtThemeMapMapper.insert(record); } @Override public int insertSelective(Res_ExtThemeMap record) { return resExtThemeMapMapper.insertSelective(record); } @Override public Res_ExtThemeMap selectByPrimaryKey(Integer resourceid) { return resExtThemeMapMapper.selectByPrimaryKey(resourceid); } @Override public int updateByPrimaryKeySelective(Res_ExtThemeMap record) { return resExtThemeMapMapper.updateByPrimaryKeySelective(record); } @Override public int updateByPrimaryKeyWithBLOBs(Res_ExtThemeMap record) { return resExtThemeMapMapper.updateByPrimaryKeyWithBLOBs(record); } @Override public int updateByPrimaryKey(Res_ExtThemeMap record) { return resExtThemeMapMapper.updateByPrimaryKey(record); } }