curl --location --request POST 'localhost:8077/prob/api/app/course/saveCourseProbRecord' \
--header 'token: forever' \
--header 'Authorization: Bearer e04bc2ccd70847efbd8b3775fb951f4e' \
--header 'tenantId: {{tenantId}}' \
--header 'Content-Type: text/plain' \
--data-raw '{
"id": 1896, //数据主键,不传该字段或值为空时表示新增数据,有值时表示修改数据
"recordType": 0, //见习课程记录方式 0、在线填写 1、拍照上传
"courseId": 45684, //课程id
"recordTitle": "为了熟悉和掌握心脏叩诊的流程和规范,以及了解心脏叩诊的检查结果和办法", //记录要求
"recordContent": "患者病区:心脏一病区。", //记录内容
"recordExperience": "1.左心衰竭:(1)不同程度的呼吸困难,", //记录心得
"editType": 1 //编辑类型 0、保存 1、提交
}
//注----recordType为1时表示拍照上传 参数如下
//{
// "id": , //数据主键,不传该字段或值为空时表示新增数据,有值时表示修改数据
// "recordType": 1, //见习课程记录方式 0、在线填写 1、拍照上传
// "courseId": 45684, //课程id
// "recordPhoto": [], //纸质图片集合
// "editType": 0 //编辑类型 0、保存 1、提交
//}'
{}