package com.moral.mapper; import java.util.List; import org.apache.ibatis.annotations.Param; import com.moral.common.mapper.BaseMapper; import com.moral.entity.Role; public interface RoleMapper extends BaseMapper { int insertSelective(Role role); int updateByPrimaryKeySelective(Role role); List getRoleList(@Param("roleName") String roleName); }