Junjie
昨天 41aeff86351d1dd94fe2408175f96475f227c1b9
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);
}