文档
测试

14.2.核酸检测历史记录

POST
{{baseURL}}/getNucleicAcidExaminationHistory

接口描述

核酸检测历史记录

请求参数

application/json
参数名
类型
描述
必填
patientNumber
string
患者编号
必填
idCard
string
身份证号码
可选

响应参数

application/json
参数名
类型
描述
必填
nucleicRecordList
array
核酸检测记录列表
必填
nucleicId
string
核酸项目id
必填
nucleicName
string
核酸项目名称
必填
patientName
string
患者名称
必填
result
string
检测结果
必填
examinationDate
string
检测时间
必填
amount
string
检测金额
必填
deptId
string
科室id
必填
deptName
string
科室名称
必填
docId
string
医生id
必填
docName
string
医生姓名
必填
hospitalIName
string
医院名称
必填
tradeNo
string
订单编号
必填
createDate
string
下单时间
必填

说明 / 示例

```javascript { "code":"200", "message":"业务逻辑操作成功", "data":{ "nucleicList":[ { "nucleicId":"123", "nucleicName":"新冠病毒核酸5混1检查", "patientName":"张三", "result":"待检测", "examinationDate":"2022-02-22 14:14:14", "amount":"10", "deptId":"12", "deptName":"检验科", "docId":"9527", "docName":"王医生", "hospitalIName":"xxxx人民医院", "tradeNo":"20220222181818", "createDate":"2022-02-22 14:14:14", } ] } } ```