作者 yangfu

机会池修改

... ... @@ -39,7 +39,7 @@
|配置-用户机会权限| | | |
|配置-评分| | |v1/config/score|
|消息-机会审核消息| | | |
|机会池| | | |
|机会池| | |/v1/chance/chancePool|
|我的机会-我的收藏| | |/v1/chance/|
|我的机会-我的点赞| | |/v1/chance/|
|消息-点赞| | |v1/message/msgInteractive|
... ...
... ... @@ -37,7 +37,7 @@ user_center_app_key ="39aefef9e22744a3b2d2d3791824ae7b"
user_center_app_secret ="cykbjnfqgctn"
#Html5
h5_host = "https://mmm-web-open-test.fjmaimaimai.com"
h5_host = "http://mmm-web-open-test.fjmaimaimai.com"
#审核中心
suplus_approve_host ="http://suplus-approve-test.fjmaimaimai.com"
\ No newline at end of file
... ...
... ... @@ -373,10 +373,10 @@ type ChanceItem struct {
Videos []Video `json:"videos"`
}
type ChanceData struct {
ThumbsUpTotal int `json:"thumbsUpTotal"` //点赞总数
ThumbsUpTotal int `json:"thumbsupTotal"` //点赞总数
CommentTotal int `json:"commentTotal"` //评论总数
PageViewTotal int `json:"pageViewTotal"` //评论总数
PageViewTotal int `json:"pageView"` //评论总数
IsThumbsUp bool `json:"isThumbsUp"` //是否点赞 1 点赞, 0 没有点赞
IsThumbsUp bool `json:"thumbsup"` //是否点赞 1 点赞, 0 没有点赞
IsCollect bool `json:"isCollect"` //是否收藏 1 是 0 否
}
... ...