Create AccessAuthorityService.java
parent
df97e1f450
commit
61cf4763a4
@ -0,0 +1,24 @@
|
|||||||
|
|
||||||
|
package com.anjiplus.template.gaea.business.modules.accessauthority.service;
|
||||||
|
|
||||||
|
import com.anji.plus.gaea.bean.TreeNode;
|
||||||
|
import com.anjiplus.template.gaea.business.modules.accessauthority.dao.entity.AccessAuthority;
|
||||||
|
import com.anjiplus.template.gaea.business.modules.accessauthority.controller.param.AccessAuthorityParam;
|
||||||
|
import com.anji.plus.gaea.curd.service.GaeaBaseService;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @desc AccessAuthority 权限管理服务接口
|
||||||
|
* @author 木子李·De <lide1202@hotmail.com>
|
||||||
|
* @date 2019-02-17 08:50:10.009
|
||||||
|
**/
|
||||||
|
public interface AccessAuthorityService extends GaeaBaseService<AccessAuthorityParam, AccessAuthority> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param loginName 当前登录的用户名
|
||||||
|
* @param withActionNode 带第三层的按钮节点
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
List<TreeNode> getAuthorityTree(String loginName, boolean withActionNode);
|
||||||
|
}
|
Loading…
Reference in New Issue