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

  1. package com.example.demo.service;
  2. import com.example.demo.domain.vo.Result;
  3. import com.example.demo.domain.vo.RoleVo;
  4. import java.util.List;
  5. /**
  6. * @program: gold-java
  7. * @ClassName RoleService
  8. * @description:
  9. * @author: Double
  10. * @create: 202507-15 11:29
  11. * @Version 1.0
  12. **/
  13. public interface RoleService {
  14. //新增角色
  15. Result addRole(RoleVo roleVo);
  16. //查找全部角色
  17. List<RoleVo> selectAllRole();
  18. }