-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathapiConfig.json
More file actions
83 lines (83 loc) · 1.88 KB
/
apiConfig.json
File metadata and controls
83 lines (83 loc) · 1.88 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"version": "1.0.0",
"apis": {
"userinfo": [
{
"method": "GET",
"path": "/userinfo/get",
"description": "获取用户信息",
"requestParams": {
"uid": {
"required": true,
"type": "string",
"description": "用户id",
"example": "u37as29sJDsjakkJDJdd2",
"in": "query"
}
},
"response": {
"successful": {
"required": true,
"type": "boolean"
}
}
},
{
"method": "POST",
"path": "/userinfo/create",
"description": "创建用户信息",
"requestParams": {
"name": {
"required": true,
"type": "string",
"description": "用户名字",
"example": "menndy",
"in": "body"
},
"age": {
"required": true,
"type": "number",
"description": "用户年龄",
"example": 18,
"in": "body"
}
},
"response": {
"successful": {
"required": true,
"type": "boolean"
}
}
}
],
"store": [
{
"method": "GET",
"path": "/store/get",
"description": "获取商品信息",
"requestParams": {
"id": {
"required": true,
"type": "string",
"description": "商品id",
"example": "u37as29sJDsjakkJDJdd2",
"in": "query"
},
"date": {
"required": true,
"type": "string",
"description": "时间",
"example": "2021.8.17",
"in": "query"
}
},
"response": {
"successful": {
"required": true,
"type": "boolean"
}
}
}
]
}
}