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; import tk.mybatis.mapper.entity.Example; public interface RoleMapper extends BaseMapper { int updateByPrimaryKey(Role role); List getRoleListByName(@Param("roleName") String roleName); List getRoleList(Example example); }