2023-11-13 09:52:20 +00:00
|
|
|
syntax = "v1"
|
|
|
|
|
|
|
|
info (
|
|
|
|
title: // TODO: add title
|
|
|
|
desc: // TODO: add description
|
|
|
|
author: ""
|
|
|
|
email: ""
|
|
|
|
)
|
|
|
|
|
|
|
|
import "basic.api"
|
|
|
|
|
|
|
|
service ldap-admin {
|
|
|
|
//获取部门列表
|
|
|
|
@handler GetDepartmentsHandler
|
2023-11-14 03:26:08 +00:00
|
|
|
get /api/ldap-admin/get_departments(request) returns (response);
|
2023-11-14 07:03:01 +00:00
|
|
|
//获取API列表
|
|
|
|
@handler GetApisHandler
|
|
|
|
get /api/ldap-admin/get_apis(GetApisReq) returns (response);
|
2023-11-15 08:49:28 +00:00
|
|
|
|
2023-11-14 07:03:01 +00:00
|
|
|
//保存API
|
|
|
|
@handler SaveApiHandler
|
|
|
|
post /api/ldap-admin/save_api(SaveApiReq) returns (response);
|
2023-11-15 08:49:28 +00:00
|
|
|
|
2023-11-15 07:16:14 +00:00
|
|
|
//保存菜单
|
|
|
|
@handler SaveMenuHandler
|
|
|
|
post /api/ldap-admin/save_menu(SaveMenuReq) returns (response);
|
2023-11-15 07:50:18 +00:00
|
|
|
//删除菜单
|
|
|
|
@handler DeleteMenuHandler
|
|
|
|
post /api/ldap-admin/delete_menu(DeleteMenuReq) returns (response);
|
|
|
|
//获取菜单详情
|
|
|
|
@handler GetMenuDetailHandler
|
|
|
|
get /api/ldap-admin/get_menu_detail(GetMenuDetailReq) returns (response);
|
|
|
|
//获取菜单列表
|
|
|
|
@handler GetMenusHandler
|
|
|
|
get /api/ldap-admin/get_menus(GetMenusReq) returns (response);
|
2023-11-14 07:03:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type GetApisReq {
|
|
|
|
Sort string `form:"sort,optional"`
|
|
|
|
CurrentPage int `form:"current_page,optional,default=1"`
|
|
|
|
PerPage int `form:"per_page,optional,default=10"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type SaveApiReq {
|
|
|
|
Id int64 `json:"id"`
|
|
|
|
Method string `json:"method"`
|
|
|
|
Path string `json:"path"`
|
|
|
|
Category string `json:"category"`
|
|
|
|
Remark string `json:"remark"`
|
2023-11-13 09:52:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//获取部门列表
|
2023-11-13 10:57:11 +00:00
|
|
|
type GetDepartmentsRsp {
|
2023-11-14 03:26:08 +00:00
|
|
|
List []*DepartmentsItem `json:"list"`
|
2023-11-13 10:57:11 +00:00
|
|
|
}
|
|
|
|
type DepartmentsItem {
|
2023-11-14 03:26:08 +00:00
|
|
|
Id int64 `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Remark string `json:"remark"`
|
|
|
|
Type string `json:"type"`
|
|
|
|
ParentId int64 `json:"parent_id"`
|
|
|
|
Dn string `json:"dn"`
|
|
|
|
SyncState int64 `json:"sync_state"`
|
2023-11-14 03:57:09 +00:00
|
|
|
Sort int64 `json:"sort"`
|
2023-11-14 03:26:08 +00:00
|
|
|
Child []*DepartmentsItem `json:"child"`
|
2023-11-14 09:33:05 +00:00
|
|
|
Members []Member `json:"members"`
|
|
|
|
}
|
|
|
|
type Member {
|
|
|
|
Id int64 `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Nickname string `json:"nickname"`
|
|
|
|
Email string `json:"email"`
|
2023-11-15 07:16:14 +00:00
|
|
|
}
|
|
|
|
//保存菜单
|
|
|
|
type SaveMenuReq {
|
2023-11-15 07:50:18 +00:00
|
|
|
Id int64 `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
Icon string `json:"icon"`
|
|
|
|
Path string `json:"path"`
|
|
|
|
Sort int64 `json:"sort"`
|
|
|
|
ParentId int64 `json:"parent_id"`
|
|
|
|
Status int64 `json:"status,options=0|1"`
|
|
|
|
}
|
|
|
|
//删除菜单
|
|
|
|
type DeleteMenuReq {
|
|
|
|
Id int64 `json:"id"`
|
|
|
|
}
|
|
|
|
//获取菜单详情
|
|
|
|
type GetMenuDetailReq {
|
|
|
|
Id int64 `form:"id"`
|
|
|
|
}
|
|
|
|
type GetMenuDetailRsp {
|
|
|
|
Id int64 `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
Icon string `json:"icon"`
|
|
|
|
Path string `json:"path"`
|
|
|
|
Sort int64 `json:"sort"`
|
|
|
|
ParentId int64 `json:"parent_id"`
|
|
|
|
Status int64 `json:"status"`
|
|
|
|
}
|
|
|
|
//获取菜单列表
|
|
|
|
type GetMenusReq {
|
2023-11-15 08:32:07 +00:00
|
|
|
CurrentPage int `form:"current_page"`
|
2023-11-15 07:50:18 +00:00
|
|
|
Name string `form:"name"`
|
|
|
|
Title string `form:"title"`
|
|
|
|
Path string `form:"path"`
|
2023-11-15 08:32:07 +00:00
|
|
|
ParentId *int64 `form:"parent_id"`
|
2023-11-15 07:50:18 +00:00
|
|
|
}
|
|
|
|
type GetMenusRsp {
|
|
|
|
List []MenuItem `json:"list"`
|
|
|
|
Meta Meta `json:"meta"`
|
|
|
|
}
|
|
|
|
type MenuItem {
|
2023-11-15 07:16:14 +00:00
|
|
|
Id int64 `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
Icon string `json:"icon"`
|
|
|
|
Path string `json:"path"`
|
|
|
|
Sort int64 `json:"sort"`
|
|
|
|
ParentId int64 `json:"parent_id"`
|
|
|
|
Status int64 `json:"status"`
|
2023-11-13 09:52:20 +00:00
|
|
|
}
|