Module: 症候疗效评估^2023/8/12

  1. 评估结果不会记录到病案中
  2. 疗效评估流程
  3. 病案的status >= 4才允许评估,否则将返回空数组:[]
Since:
  • 2023/8/12
Author:
  • zz

Methods

(inner) post /symptom_assessment(medicalrecordId, timestamp, sign, JSON)

Parameters:
Name Type Description
medicalrecordId String(24) 病案ID
timestamp String(10) 时间戳,值为秒值,长度10位,时间戳有效期:±10分钟
sign String(64) 签名
JSON Array.<Object> body参数
Properties
Name Type Description
symptomId String(24) 症候ID
curativeeffect Number 症候疗效评估结果,症候疗效评估,0:没有(无)1:偶尔(略微)2:较少(有点)3:较多(一般)4:很多(非常)5:总是(极其)2021-12-20
Properties:
Name Type Description
curativeeffect Array.<Number> 评估结果,数值为各评估情况的占比,[0]:痊愈指数,[1]:好转指数,[2]:无效指数
symptomCurativeeffect Array.<Number> 支持症候程度未变、症候加重和症候新增的评估结果,数值为各评估情况的占比,[0]:症候消失,[1]:症候减轻,[2]:症候未变,[3]:症候加重,[4]:症候新增 2023/8/12
Examples
请求示例:/symptom_assessment?medicalrecordId=5e2e7bdab8d9e2499c3058ec&sign=F4ED954DAB13AA0DD9F0A9055834EB86983CC886401B4DF0EB5B8785E40C9B48&timestamp=1570428513
JSON参数
  [
    {
      "symptomId": "5e38161bd6c3526b105aaf2e",
      "curativeeffect": 5
    }, {
      "symptomId": "5e38161bd6c3526b105aaf2f",
      "curativeeffect": 4
    }, {
      "symptomId": "5e38161bd6c3526b105aaf31",
      "curativeeffect": 3
    }, {
      "symptomId": "5e38161bd6c3526b105aaf32",
      "curativeeffect": 3
    }
  ]
返回示例:
  {
    "curativeeffect": [
        0.2759,
        0.1446,
        0.5794
    ],
    "symptomCurativeeffect": [
      0.4232, 
      0, 
      0.2641, 
      0.1716, 
      0.1411
    ]
  }