Junjie
1 天以前 cc5b5daacf92ac5601370c50463237b34b7ba78f
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);
}