- 系统服务
- 认证服务
- 资源服务
- 代码生成
- 云端系统服务
- 版本包管理
- 版本管理
- 用户认证相关接口
- 课程主题相关接口
- 运动视频
- 公告已读接口
- 用户反馈相关接口
- 点赞收藏表
- 文章相关接口
- 广告管理
- 测试模块
- 首页相关接口
- 公告相关接口
- 课程注水记录表
- 修改POST
- 置顶/取消置顶POST
- 新增POST
- 审核通过POST
- 列表POST
- 下架POST
- 删除POST
- addBrowseNumPOST
- selectCourseFitnessPurposeGET
- 信息GET
- appHostCourseListGET
- 医科大基础服务
- 中小学一体机
新增
POST
/hyd-base-system/topiccoursevirtualvalue/save
课程注水记录表
请求参数
Header 参数
Authorization
string
可选
默认值:
Bearer {{access_token}}
Clientid
string
可选
默认值:
{{client_id}}
Body 参数application/json
课程注水记录表
topicCourseId
integer <int64>
课程主题id
示例值:
922337203685477600
courseId
integer <int64>
课程id
示例值:
922337203685477600
likeVirtualValue
integer <int32>
点赞注水值
likeVirtualValueSum
integer <int32>
注水后点赞总注水值
collectionVirtualValue
integer <int32>
收藏注水值
collectionVirtualValueSum
integer <int32>
注水后收藏总注水值
exerciseVirtualValue
integer <int32>
锻炼人数注水值
exerciseVirtualValueSum
integer <int32>
可选
updateUserId
integer <int64>
操作人id
示例值:
922337203685477600
gmtCreate
string <date-time>
创建时间
示例
{
"topicCourseId": 922337203685477600,
"courseId": 922337203685477600,
"likeVirtualValue": 0,
"likeVirtualValueSum": 0,
"collectionVirtualValue": 0,
"collectionVirtualValueSum": 0,
"exerciseVirtualValue": 0,
"exerciseVirtualValueSum": 0,
"updateUserId": 922337203685477600,
"gmtCreate": "2019-08-24T14:15:22Z"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://192.168.20.159:8080/hyd-base-system/topiccoursevirtualvalue/save' \
--header 'Authorization: Bearer ' \
--header 'Clientid: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"topicCourseId": 922337203685477600,
"courseId": 922337203685477600,
"likeVirtualValue": 0,
"likeVirtualValueSum": 0,
"collectionVirtualValue": 0,
"collectionVirtualValueSum": 0,
"exerciseVirtualValue": 0,
"exerciseVirtualValueSum": 0,
"updateUserId": 922337203685477600,
"gmtCreate": "2019-08-24T14:15:22Z"
}'
返回响应
🟢200OK
application/json
Body
code
integer <int32>
消息状态码
msg
string
消息内容
data
integer <int64>
数据对象
示例值:
922337203685477600
success
boolean
可选
示例
{
"code": 0,
"msg": "string",
"data": 922337203685477600,
"success": true
}