### POST /course * method: POST * version: v1.0 * describe: 创建课程 * method: PUT * version: v1.0 * describe: 修改课程 ##### 参数说明 | name | type | null| desc | |------|:-----|:----|:----:| | id | string | yes | 课id | | code | string | no | 课编码 | | name | string | no | 课名称 | | digest| string | yes | 课描述 | | tags | array | yes | 标签名数组 | | subItemList | array | yes | 课数组, 不传不更新, 传[]则更新为空, {"id":"", "type":"LESSON"}| | supportList | array | yes | 周边id数组, 同课数组 | | cpId| string | yes | 内容提供商id | | status| string | yes | 状态| ##### 结果示例 ``` { "code": "0000" "message": "", } ```