Junjie
2026-04-10 c18f8a5adb162791ef63f92ec457c8a34844e822
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.zy.system.service;
 
import com.zy.system.domain.param.HighPrivilegeGrantParam;
import com.zy.system.model.HighPrivilegeGrantStatus;
 
public interface HighPrivilegeGrantService {
 
    HighPrivilegeGrantStatus grant(String token, HighPrivilegeGrantParam param);
 
    HighPrivilegeGrantStatus getStatus(String token);
 
    void assertGranted(String token, String actionName);
}