IRoleService.java 301 B

1234567891011121314
  1. package com.om.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.om.entity.po.Role;
  4. import java.util.List;
  5. public interface IRoleService extends IService<Role> {
  6. void setRoleMenu(Integer roleId, List<Integer> menuIds);
  7. Object getRoleMenu(Integer roleId);
  8. }