文档
测试

服务画像

POST
{{host}}/tags/markLog/getTagsTimes

请求头

参数名
类型
描述
必填
token
String
token登录认证
必填

请求参数

参数名
类型
描述
必填
tagsId
Long
标签ID
必填
goodsType
Integer
商品类型 1:个性化服务 2:TA订服务
必填

响应参数

参数名
类型
描述
必填
code
string
示例:200
必填
result
object
数据字典
必填
goodsId
int
示例:158
必填
goodsName
string
示例:儿童餐椅
必填
arrTags
array
数据列表
必填
createTime
string
示例:2020-10-09 17:01:32
必填
createBy
string
示例:testzst
必填
updateTime
string
示例:2020-10-13 11:10:46
必填
updateBy
string
示例:testzst
必填
id
int
示例:11
必填
parentId
int
示例:9
必填
classify1Id
int
示例:3
必填
classify2Id
int
示例:8
必填
classify3Id
int
示例:9
必填
name
string
示例:010101叶子2
必填
level
int
示例:4
必填
hasSelf
int
示例:0
必填
sort
int
示例:1000
必填
hasValid
int
示例:0
必填
memberNum
object
示例:null
必填
goodsNum
object
示例:null
必填
goodsNameStr
object
示例:null
必填
createTime
object
示例:null
必填
tagsNameStr
object
示例:null
必填
tagsIdStr
object
示例:null
必填
success
boolean
示例:true
必填
timestamp
string
示例:2020-10-13 13:42:39
必填

说明 / 示例

**返回示例** ```json { "code": "200", "result": { "arrTags": [ { "tagsId": 11, "amount": 5, "tagsName": "010101叶子2", "likeAmount": 2, "type": 0 } ], "arrSort": { "like": [ { "tagsId": 11, "amount": 0, "tagsName": "010101叶子2", "likeAmount": 3, "type": 1 } ], "unlike": [ { "tagsId": 11, "amount": 0, "tagsName": "010101叶子2", "likeAmount": 1, "type": 2 }, { "tagsId": 12, "amount": 0, "tagsName": "010102", "likeAmount": 1, "type": 2 } ] } }, "success": true, "timestamp": "2020-10-30 10:46:49" } ``` **result说明** |参数名|类型|说明| |-|-|-| |arrTags| JSON| 双柱图数据 | |arrSort| JSON| 个性化服务商品排名 like :喜欢 unlike:讨厌| **arrTags说明** |参数名|类型|说明| |-|-|-| |tagsId| Long| 标签ID | |tagsName| String| 标签名称 | |amount| Integer| 商品购买数量 | |likeAmount| Integer| 用户喜欢次数 | |type| Integer| 标签类型 1:喜欢 2:讨厌 | **like unlike说明** |参数名|类型|说明| |-|-|-| |tagsId| Long| 标签ID | |tagsName| String| 标签名称 | |amount| Integer| 商品购买数量 | |likeAmount| Integer| 用户喜欢次数 | |type| Integer| 标签类型 1:喜欢 2:讨厌 |