package com.gxx.manage.base.dao; import org.springframework.stereotype.Repository; import com.gxx.manage.base.vo.UserRole; @Repository public interface UserRoleMapper { int deleteByPrimaryKey(Integer id); int insert(UserRole record); int insertSelective(UserRole record); UserRole selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(UserRole record); int updateByPrimaryKey(UserRole record); }