Commit 2d46a0005e79f552139f94bf6a889fe58cb033cc
1 parent
1fb183f6
Exists in
v1.2
and in
2 other branches
.
Showing
2 changed files
with
6 additions
and
6 deletions
Show diff stats
API/UserLog.go
... | ... | @@ -12,20 +12,20 @@ import ( |
12 | 12 | // @Description 增加访问日志 |
13 | 13 | // @Accept json |
14 | 14 | // @Produce json |
15 | -// @Param Type 安装app string true "安装;卸载;访问页面;使用功能;缩放地图" | |
15 | +// @Param Type 访问页面 string true "安装;卸载;访问页面;使用功能;缩放地图" | |
16 | 16 | // @Param SubType 景区详情 string true "推荐;景区详情;登陆;商城;投诉建议;问券调查...." |
17 | 17 | // @Param ScenicId 5dfb03070a9ac17ac7a82054 string true "景区id" |
18 | 18 | // @Param UserId 5dfb03070a9ac17ac7a82054 string true "用户ID" |
19 | 19 | // @Param UserName Aaron string true "用户名称" |
20 | 20 | // @Param Location {"Latitude": 119, "Longitude": 39} string true "位置" |
21 | 21 | // @Param Remarks 备注 string true "备注" |
22 | -// @Param Source 用户分享 string true "Source" | |
22 | +// @Param Source 用户分享 string true "来源" | |
23 | 23 | // @Param DeviceId abc123 string true "手机唯一识别码,不重复(存放于http.header中)" |
24 | 24 | // @Param Mac abc123 string true "网卡Mac地址(存放于http.header中)" |
25 | 25 | // @Param SystemType ios string true "ios,android(存放于http.header中)" |
26 | 26 | // @Param SystemVersion 13.01 string true "手机版本(存放于http.header中)" |
27 | 27 | // @Param SystemModel iphone8 string true "手机型号(存放于http.header中)" |
28 | -// @Success 200 {object} tools.ResponseSeccess "" | |
28 | +// @Success 200 {object} tools.ResponseSeccess "{"errcode":0,"result":"ok"}" | |
29 | 29 | // @Failure 500 {object} tools.ResponseError "{"errcode":1,"errmsg":"错误原因"}" |
30 | 30 | // @Router /UserLog? [post] |
31 | 31 | func UserLog(c *gin.Context) { | ... | ... |
README.md
... | ... | @@ -640,14 +640,14 @@ |
640 | 640 | |
641 | 641 | | Param Name | Example | Data Type | Description | Required? | |
642 | 642 | |-----|-----|-----|-----|-----| |
643 | -| Type | 安装app | string | 安装;卸载;访问页面;使用功能;缩放地图 | Yes | | |
643 | +| Type | 访问页面 | string | 安装;卸载;访问页面;使用功能;缩放地图 | Yes | | |
644 | 644 | | SubType | 景区详情 | string | 推荐;景区详情;登陆;商城;投诉建议;问券调查.... | Yes | |
645 | 645 | | ScenicId | 5dfb03070a9ac17ac7a82054 | string | 景区id | Yes | |
646 | 646 | | UserId | 5dfb03070a9ac17ac7a82054 | string | 用户ID | Yes | |
647 | 647 | | UserName | Aaron | string | 用户名称 | Yes | |
648 | 648 | | Location | {"Latitude": 119, "Longitude": 39} | string | 位置 | Yes | |
649 | 649 | | Remarks | 备注 | string | 备注 | Yes | |
650 | -| Source | 用户分享 | string | Source | Yes | | |
650 | +| Source | 用户分享 | string | 来源 | Yes | | |
651 | 651 | | DeviceId | abc123 | string | 手机唯一识别码,不重复(存放于http.header中) | Yes | |
652 | 652 | | Mac | abc123 | string | 网卡Mac地址(存放于http.header中) | Yes | |
653 | 653 | | SystemType | ios | string | ios,android(存放于http.header中) | Yes | |
... | ... | @@ -657,7 +657,7 @@ |
657 | 657 | |
658 | 658 | | Code | Type | Model | Message | |
659 | 659 | |-----|-----|-----|-----| |
660 | -| 200 | object | [ResponseSeccess](#github.com.aarongao.tools.ResponseSeccess) | | | |
660 | +| 200 | object | [ResponseSeccess](#github.com.aarongao.tools.ResponseSeccess) | {"errcode":0,"result":"ok"} | | |
661 | 661 | | 500 | object | [ResponseError](#github.com.aarongao.tools.ResponseError) | {"errcode":1,"errmsg":"错误原因"} | |
662 | 662 | |
663 | 663 | ... | ... |