Commit 8039737a by guojuxing

角色下拉框列表数据接口

parent 8a3ca730
......@@ -5,6 +5,9 @@ import com.gic.api.base.commons.ServiceResponse;
import com.gic.auth.dto.RoleDTO;
import com.gic.auth.dto.RoleListDTO;
import com.gic.auth.qo.RoleListQO;
import java.util.List;
/**
* 角色权限接口
* @ClassName: RoleApiService

......@@ -53,4 +56,14 @@ public interface RoleApiService {
* @return com.gic.api.base.commons.ServiceResponse<com.gic.api.base.commons.Page<com.gic.auth.dto.RoleDTO>>


 */
ServiceResponse<Page<RoleListDTO>> pageRole(RoleListQO params);
/**
* 角色列表
* @Title: listRole

* @Description:

 * @author guojuxing
* @param enterpriseId

* @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.auth.dto.RoleDTO>>


 */
ServiceResponse<List<RoleDTO>> listRole(Integer enterpriseId);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment