文档
测试

根据病人ID、指定日期区间 查询生命体征参数列表

GET
/app/ward/healthInfo

接口描述

根据病人ID、指定日期查询生命体征参数列表

请求参数

参数名
类型
描述
必填
inhospital_code
str
住院编号
必填
date
str
日期格式
必填
dateStart
开始日期
必填
dateEnd
结束日期
必填

响应参数

参数名
类型
描述
必填
inhospital_code
住院编号
必填
height
身高
必填
weight
体重
必填
heartbeat
心跳
必填
breath
呼吸
必填
temperature
体温
必填
blood_sugar
血糖
必填
date
日期
必填

说明 / 示例

{ "header": { "path": "/app/ward/healthInfo?inhospital_code=PANIENT1613556623446", "code": 200, "status": true, "msg": "" }, "data": [ { "id": 2, "code_num": null, "inhospital_code": "PANIENT1613556623446", "height": "175", "weight": "75", "heartbeat": "63", "breath": "17", "temperature": "36.6", "blood_sugar": "160/115", "date": "2021-03-06" }, { "id": 1, "code_num": null, "inhospital_code": "PANIENT1613556623446", "height": "175", "weight": "75", "heartbeat": "68", "breath": "20", "temperature": "36.2", "blood_sugar": "170/120", "date": "2021-03-05" } ] }