company.api
1.4 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
syntax = "v1"
info(
title: "xx实例"
desc: "xx实例"
author: "author"
email: "email"
version: "v1"
)
@server(
prefix: company/v1
group: company
jwt: JwtAuth
)
service Core {
@handler getCompany
post /company/:id (CompanyGetRequest) returns (CompanyGetResponse)
@handler saveCompany
post /company (CompanySaveRequest) returns (CompanySaveResponse)
@handler deleteCompany
delete /company/:id (CompanyDeleteRequest) returns (CompanyDeleteResponse)
@handler updateCompany
put /company/:id (CompanyUpdateRequest) returns (CompanyUpdateResponse)
@handler searchCompany
post /company/search (CompanySearchRequest) returns (CompanySearchResponse)
}
type (
CompanyGetRequest {
Id int64 `path:"id"`
}
CompanyGetResponse struct{
Company CompanyItem `json:"company"`
}
CompanySaveRequest struct{
Company CompanyItem `json:"company"`
}
CompanySaveResponse struct{}
CompanyDeleteRequest struct{
Id int64 `path:"id"`
}
CompanyDeleteResponse struct{}
CompanyUpdateRequest struct{
Id int64 `path:"id"`
Company CompanyItem `json:"company"`
}
CompanyUpdateResponse struct{}
CompanySearchRequest struct{
Page int `json:"page"`
Size int `json:"size"`
}
CompanySearchResponse{
List []CompanyItem `json:"list"`
Total int64 `json:"total"`
}
CompanyItem struct{
}
)