@@ -501,6 +501,82 @@ const docTemplate = `{ | |||
} | |||
} | |||
}, | |||
"/api/v1/circleFriends/comment": { | |||
"get": { | |||
"description": "是否可以评论", | |||
"consumes": [ | |||
"application/json" | |||
], | |||
"produces": [ | |||
"application/json" | |||
], | |||
"tags": [ | |||
"朋友圈" | |||
], | |||
"summary": "朋友圈-评论", | |||
"parameters": [ | |||
{ | |||
"type": "string", | |||
"description": "验证参数Bearer和token空格拼接", | |||
"name": "Authorization", | |||
"in": "header", | |||
"required": true | |||
} | |||
], | |||
"responses": { | |||
"200": { | |||
"description": "许可链接", | |||
"schema": { | |||
"type": "string" | |||
} | |||
}, | |||
"400": { | |||
"description": "具体错误", | |||
"schema": { | |||
"$ref": "#/definitions/md.Response" | |||
} | |||
} | |||
} | |||
} | |||
}, | |||
"/api/v1/circleFriends/isCanComment": { | |||
"get": { | |||
"description": "是否可以评论", | |||
"consumes": [ | |||
"application/json" | |||
], | |||
"produces": [ | |||
"application/json" | |||
], | |||
"tags": [ | |||
"朋友圈" | |||
], | |||
"summary": "朋友圈-是否可以评论", | |||
"parameters": [ | |||
{ | |||
"type": "string", | |||
"description": "验证参数Bearer和token空格拼接", | |||
"name": "Authorization", | |||
"in": "header", | |||
"required": true | |||
} | |||
], | |||
"responses": { | |||
"200": { | |||
"description": "许可链接", | |||
"schema": { | |||
"type": "string" | |||
} | |||
}, | |||
"400": { | |||
"description": "具体错误", | |||
"schema": { | |||
"$ref": "#/definitions/md.Response" | |||
} | |||
} | |||
} | |||
} | |||
}, | |||
"/api/v1/college/cate": { | |||
"get": { | |||
"description": "蛋蛋学院-分类", | |||
@@ -3991,6 +4067,10 @@ const docTemplate = `{ | |||
"description": "下次可观看广告时间,若为空允许观看视频", | |||
"type": "string" | |||
}, | |||
"next_watch_ad_secs": { | |||
"description": "下次可观看广告时间,若为空允许观看视频", | |||
"type": "integer" | |||
}, | |||
"residue_watch_ad_num": { | |||
"description": "当前剩余可观看视频数", | |||
"type": "integer" | |||
@@ -495,6 +495,82 @@ | |||
} | |||
} | |||
}, | |||
"/api/v1/circleFriends/comment": { | |||
"get": { | |||
"description": "是否可以评论", | |||
"consumes": [ | |||
"application/json" | |||
], | |||
"produces": [ | |||
"application/json" | |||
], | |||
"tags": [ | |||
"朋友圈" | |||
], | |||
"summary": "朋友圈-评论", | |||
"parameters": [ | |||
{ | |||
"type": "string", | |||
"description": "验证参数Bearer和token空格拼接", | |||
"name": "Authorization", | |||
"in": "header", | |||
"required": true | |||
} | |||
], | |||
"responses": { | |||
"200": { | |||
"description": "许可链接", | |||
"schema": { | |||
"type": "string" | |||
} | |||
}, | |||
"400": { | |||
"description": "具体错误", | |||
"schema": { | |||
"$ref": "#/definitions/md.Response" | |||
} | |||
} | |||
} | |||
} | |||
}, | |||
"/api/v1/circleFriends/isCanComment": { | |||
"get": { | |||
"description": "是否可以评论", | |||
"consumes": [ | |||
"application/json" | |||
], | |||
"produces": [ | |||
"application/json" | |||
], | |||
"tags": [ | |||
"朋友圈" | |||
], | |||
"summary": "朋友圈-是否可以评论", | |||
"parameters": [ | |||
{ | |||
"type": "string", | |||
"description": "验证参数Bearer和token空格拼接", | |||
"name": "Authorization", | |||
"in": "header", | |||
"required": true | |||
} | |||
], | |||
"responses": { | |||
"200": { | |||
"description": "许可链接", | |||
"schema": { | |||
"type": "string" | |||
} | |||
}, | |||
"400": { | |||
"description": "具体错误", | |||
"schema": { | |||
"$ref": "#/definitions/md.Response" | |||
} | |||
} | |||
} | |||
} | |||
}, | |||
"/api/v1/college/cate": { | |||
"get": { | |||
"description": "蛋蛋学院-分类", | |||
@@ -3985,6 +4061,10 @@ | |||
"description": "下次可观看广告时间,若为空允许观看视频", | |||
"type": "string" | |||
}, | |||
"next_watch_ad_secs": { | |||
"description": "下次可观看广告时间,若为空允许观看视频", | |||
"type": "integer" | |||
}, | |||
"residue_watch_ad_num": { | |||
"description": "当前剩余可观看视频数", | |||
"type": "integer" | |||
@@ -666,6 +666,9 @@ definitions: | |||
next_watch_ad_date: | |||
description: 下次可观看广告时间,若为空允许观看视频 | |||
type: string | |||
next_watch_ad_secs: | |||
description: 下次可观看广告时间,若为空允许观看视频 | |||
type: integer | |||
residue_watch_ad_num: | |||
description: 当前剩余可观看视频数 | |||
type: integer | |||
@@ -1743,6 +1746,56 @@ paths: | |||
summary: 广告状态 看完之后拿到广告唯一值 | |||
tags: | |||
- 广告位 | |||
/api/v1/circleFriends/comment: | |||
get: | |||
consumes: | |||
- application/json | |||
description: 是否可以评论 | |||
parameters: | |||
- description: 验证参数Bearer和token空格拼接 | |||
in: header | |||
name: Authorization | |||
required: true | |||
type: string | |||
produces: | |||
- application/json | |||
responses: | |||
"200": | |||
description: 许可链接 | |||
schema: | |||
type: string | |||
"400": | |||
description: 具体错误 | |||
schema: | |||
$ref: '#/definitions/md.Response' | |||
summary: 朋友圈-评论 | |||
tags: | |||
- 朋友圈 | |||
/api/v1/circleFriends/isCanComment: | |||
get: | |||
consumes: | |||
- application/json | |||
description: 是否可以评论 | |||
parameters: | |||
- description: 验证参数Bearer和token空格拼接 | |||
in: header | |||
name: Authorization | |||
required: true | |||
type: string | |||
produces: | |||
- application/json | |||
responses: | |||
"200": | |||
description: 许可链接 | |||
schema: | |||
type: string | |||
"400": | |||
description: 具体错误 | |||
schema: | |||
$ref: '#/definitions/md.Response' | |||
summary: 朋友圈-是否可以评论 | |||
tags: | |||
- 朋友圈 | |||
/api/v1/college/cate: | |||
get: | |||
consumes: | |||