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_User_LayerExtentMapper; import com.landtool.lanbase.modules.res.entity.Res_User_LayerExtent; import com.landtool.lanbase.modules.res.service.ResUserLayerExtentService; @Service public class ResUserLayerExtentServiceImpl implements ResUserLayerExtentService { @Autowired private Res_User_LayerExtentMapper res_user_layerExtentMapper; @Override public int insertSelective(Res_User_LayerExtent record) { return res_user_layerExtentMapper.insertSelective(record); } @Override public Res_User_LayerExtent selectByPrimaryKey(Integer id) { return res_user_layerExtentMapper.selectByPrimaryKey(id); } @Override public int deleteByPrimaryKey(Integer id) { return res_user_layerExtentMapper.deleteByPrimaryKey(id); } @Override public int updateByPrimaryKeySelective(Res_User_LayerExtent record) { return res_user_layerExtentMapper.updateByPrimaryKeySelective(record); } @Override public List selectByResidAndUserid(Res_User_LayerExtent record) { return res_user_layerExtentMapper.selectByResidAndUserid(record); } @Override public int getCurrentObjectId(){ return res_user_layerExtentMapper.getCurrentObjectId(); } }