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_Ext3DMapper; import com.landtool.lanbase.modules.res.entity.Res_Ext3D; import com.landtool.lanbase.modules.res.service.ResExt3DService; @Service("ResExt3DService") public class ResExt3DServiceImpl implements ResExt3DService { @Autowired private Res_Ext3DMapper res_ext3DMapper; @Override public int deleteByPrimaryKey(Integer resourceid) { return res_ext3DMapper.deleteByPrimaryKey(resourceid); } @Override public int insert(Res_Ext3D record) { return res_ext3DMapper.insert(record); } @Override public int insertSelective(Res_Ext3D record) { return res_ext3DMapper.insertSelective(record); } @Override public Res_Ext3D selectByPrimaryKey(Integer resourceid) { return res_ext3DMapper.selectByPrimaryKey(resourceid); } @Override public int updateByPrimaryKeySelective(Res_Ext3D record) { return res_ext3DMapper.updateByPrimaryKeySelective(record); } @Override public int updateByPrimaryKey(Res_Ext3D record) { return res_ext3DMapper.updateByPrimaryKey(record); } }