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