Junjie
3 天以前 9e7a6d4a099f039319c9a3647957fe6d4aa4ca21
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);
}