app.api
2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
syntax = "v1"
// 后台接口
@server(
prefix: v1
group: app
middleware: LogRequest
jwt: SystemAuth
)
service Core {
@doc "应用-详情"
@handler systemAppGet
get /system/app/:id (SystemAppGetRequest) returns (SystemAppGetResponse)
@doc "应用-搜索"
@handler systemAppSearch
post /system/app/search (SystemAppSearchRequest) returns (SystemAppSearchResponse)
@doc "应用-设置配置"
@handler systemAppSetConfig
get /system/app/set_config (SystemAppSetConfigRequest) returns (SystemAppSetConfigResponse)
}
type (
SystemAppGetRequest {
Id int64 `path:"id"`
}
SystemAppGetResponse {
SystemApp SystemAppItem `json:"app"`
}
SystemAppUpdateResponse {}
SystemAppSearchRequest {
Page int `json:"page,optional"`
Size int `json:"size,optional"`
Name string `json:"name,optional"`
VisibleFlag int `json:"visibleFlag,optional"` //0:所有 1:全员可见 2:部分可见 3:已停用
}
SystemAppSearchResponse{
List []SystemAppItem `json:"list"`
Total int64 `json:"total"`
}
SystemAppItem {
Id int64 `json:"id,omitempty"` // 唯一标识
Code string `json:"code,omitempty"` // 应用编码
Name string `json:"name,omitempty"` // 应用名称
Logo string `json:"logo,omitempty"` // 图标
Description string `json:"description,omitempty"` // 描述
Type string `json:"type,omitempty"` // 分类 default
VersionNumber string `json:"versionNumber,omitempty"` // 应用版本号
Status int `json:"status,omitempty"` // 1:启用、2:停用
VisibleFlag int `json:"visibleFlag,omitempty"` // 1:全员可见 2:部分可见
VisibleUsers []int64 `json:"visibleUsers,omitempty"` // 可见的用户 所有用户:空 部分用户:用户ID列表
Sort int `json:"sort,omitempty"` // 排序
}
)
// 应用-设置配置
type(
SystemAppSetConfigRequest{
VisibleFlag int `json:"visibleFlag"` // 1:全员可见 2:部分可见
VisibleUsers []int64 `json:"visibleUsers"` // 可见的用户 所有用户:空 部分用户:用户ID列表
}
SystemAppSetConfigResponse{
SystemApp SystemAppItem `json:"app"`
}
)