文档
测试

9.2.获取打印的报告

POST
{{baseURL}}/getPatientReportDetail

接口描述

获取可打印的报告

请求参数

application/json
参数名
类型
描述
必填
patientNumber
string
患者唯一编号
必填
reportType
string
报告类型 [1]检验 [2] 检查
可选
dateTime
string
报告日期 格式:yyyy-MM-dd
可选
reportPrintStatus
string
报告打印状态 [0] 已打印 [1] 未打印
必填

响应参数

application/json
参数名
类型
描述
必填
reportList
array
报告列表
必填
reportContent
string
检查内容
必填
reportDateTime
string
报告日期 格式:yyyy-MM-dd hh:mm:ss
必填
reportPrintStatus
string
报告打印状态 0 已打印 1 未打印
必填
reportNo
string
报告单编号
必填
patientName
string
患者姓名
必填
reportType
string
报告类型
必填
extInfo
string
扩展信息
必填
printFileURL
string
打印报告地址
必填
reportNoShort
string
报告编号
必填

说明 / 示例

```javascript { "code":"200", "message":"业务逻辑成功", "data":{ "reportList":[ { "reportContent":"血常规", "reportDateTime":"2020-01-01 10:00:00", "reportPrintStatus":"0", "reportNo":"BT-2-s4001", "patientName":"张三", "reportType":"检查报告", "extInfo":"{"xx":"xx"}", "reportNoShort":"s4001", "printFileURL":"ftp://xxx.xxx.xxx:xx//xx/xx/xx.pdf", } ] } } ```