文档
测试

12.1.查询电子病历

POST
{{baseURL}}/getElectronicMedicalRecord

接口描述

获取电子病历

请求参数

application/json
参数名
类型
描述
必填
startDate
string
开始日期 格式:yyyy-MM-dd
必填
endDate
string
结束日期 格式:yyyy-MM-dd
必填
patientNumber
string
患者编号
必填
idCard
string
身份证号码
可选
deptId
string
科室id
可选
admissionNumber
string
住院号
可选
medicalRecordType
string
病历类型 门诊病历 住院病历
必填

响应参数

application/json
参数名
类型
描述
必填
recordList
array
病历列表
必填
patientName
string
患者姓名
必填
patientSex
string
患者性别
必填
patientAge
string
患者年龄
必填
deptId
string
科室id
必填
deptName
string
科室名称
必填
medicalRecordType
string
病历类型 门诊病历 住院病历
必填
medicalRecordDate
string
创建病历时间
必填
recordDetail
array
病历详情
必填
patientName
string
患者姓名
必填
patientSex
string
患者性别
必填
patientAge
string
患者年龄
必填
patientNumber
string
患者编号
必填
bedNumber
string
床位号(住院必填)
可选
admissionNumber
string
住院号(住院必填)
可选
homeAddress
string
家庭住址(住院必填)
可选
profession
string
职业(住院必填)
可选
nation
string
民族(住院必填)
可选
workUnit
string
工作单位(住院必填)
可选
cardNo
string
卡号
必填
birthday
string
出生日期
必填
admissionDate
string
入院日期(住院必填)
可选
recordDate
string
记录日期(住院必填)
可选
birthplace
string
出生地(住院必填)
可选
historyTeller
string
病史陈诉者(住院必填)
可选
deptId
string
科室id
必填
deptName
string
科室名称
必填
dcoId
string
医生id
必填
docName
string
医生姓名
必填
treatmentDate
string
就诊时间
必填
cheifComplaint
string
主诉
必填
historyPresentIllness
string
现病史
必填
pastDiseaseHistory
string
既往史
必填
allergyHistory
string
过敏史
必填
personalHistory
string
个人史(住院必填)
可选
menstrualHistory
string
月经史(住院、女性患者必填)
可选
marrigeAndChildbirthHistory
string
婚育史(住院必填)
可选
familyHistory
string
家族史(住院必填)
可选
auxiliaryExamination
string
辅助检查
必填
physicalExamination
string
体格检查
必填
diagnosis
string
诊断
必填
processingMethod
string
处理方式/意见
必填
prescriptionId
string
处方id
必填
printFileURL
string
文件地址(FTP地址)
必填

说明 / 示例

```javascript { "code":"200", "message":"业务逻辑操作成功", "data":{ "recordList":[ { "patientName":"张三", "patientSex":"男", "patientAge":"22", "deptId":"18", "deptName":"呼吸内科", "medicalRecordType":"门诊病历", "medicalRecordDate":"2022-02-22 12:12:12", "recordDetail":[ { "patientName":"张三", "patientSex":"男", "patientAge":"22", "patientNumber":"9527", "bedNumber":"", "hospitalizedNumber":"", "homeAddress":"", "profession":"", "nation":"", "workUnit":"", "cardNo":"20220222121212", "birthday":"2000-02-21", "admissionDate":"", "recordDate":"", "birthplace":"", "historyTeller":"", "deptId":"18", "deptName":"呼吸内科", "dcoId":"0513", "docName":"华佗", "treatmentDate":"2022-02-22", "cheifComplaint":"慢性咽炎", "historyPresentIllness":"慢性咽炎", "pastDiseaseHistory":"慢性咽炎", "allergyHistory":"无", "personalHistory":"", "menstrualHistory":"", "marrigeAndChildbirthHistory":"", "familyHistory":"", "auxiliaryExamination":"喉镜", "physicalExamination":"无", "diagnosis":"慢性咽炎", "processingMethod":"按时吃药,饮食清淡,忌烟酒", "prescriptionId":"1212121212", "printFileURL":"ftp://xxx.xxx.xxx:xx/xx/xx/xx.pdf" } ] } ] } } ```