文档
测试

14.2核酸检测历史记录

POST
{{baseURL}}/getNucleicAcidExaminationHistory

请求参数

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

响应参数

application/json
参数名
类型
描述
必填
nucleicList
array
数据列表
必填
nucleicId
string
示例:123
必填
nucleicName
string
核酸检测项目 示例:新冠病毒核酸5混1检查
必填
patientName
string
检测人 示例:张三
必填
checkResultType
string
检测结果类型 0 待缴费 1待检测 2检测完成 示例:1
必填
checkReusltText
string
检测结果 示例:待检测
必填
amount
string
核酸检测费用 示例:10
必填
deptId
string
开单科室id 示例:12
必填
deptName
string
开单科室名称 示例:检验科
必填
docId
string
开单医生id 示例:9527
必填
docName
string
开单医生名称 示例:王医生
必填
hospitalIName
string
医院名称 示例:xxxx人民医院
必填
tradeNo
string
订单号 示例:20220222181818
必填
createDate
string
订单创建时间/下单时间 示例:2022-02-22 14:14:14
必填
examinationDate
string
检测时间 示例:2022-02-22 14:14:14
必填
showBarCode
string
是否展示采样条码 0 否 1 是 示例:0
必填
barCodeText
string
采样条码内容 示例:''
必填

说明 / 示例

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