This commit is contained in:
2022-12-15 18:27:49 +08:00
parent 533374bd95
commit fada0fb994
2 changed files with 6 additions and 1 deletions

View File

@@ -3,6 +3,8 @@ package org.nl.system.service.role.dao.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.nl.system.service.role.dao.SysRole;
import java.util.List;
/**
* <p>
* 角色表 Mapper 接口
@@ -12,5 +14,5 @@ import org.nl.system.service.role.dao.SysRole;
* @since 2022-12-15
*/
public interface SysRoleMapper extends BaseMapper<SysRole> {
List<SysRole> list();
}