Commit 2d46a0005e79f552139f94bf6a889fe58cb033cc

Authored by aarongao
1 parent 1fb183f6
Exists in v1.2 and in 2 other branches master, v1.1

.

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