You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
435 B
25 lines
435 B
package com.example.demo.service;
|
|
|
|
|
|
import com.example.demo.domain.vo.Result;
|
|
import com.example.demo.domain.vo.RoleVo;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @program: gold-java
|
|
* @ClassName RoleService
|
|
* @description:
|
|
* @author: Double
|
|
* @create: 2025−07-15 11:29
|
|
* @Version 1.0
|
|
**/
|
|
|
|
public interface RoleService {
|
|
|
|
//新增角色
|
|
Result addRole(RoleVo roleVo);
|
|
|
|
//查找全部角色
|
|
List<RoleVo> selectAllRole();
|
|
}
|