Junjie
22 小时以前 d719e394fa5733621e99768821157feb2e251718
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);
}