病历列表查询
[TOC]
简要描述
- 病历列表查询
请求URL
-
` /his/case/getCasePage
`
请求方式
- GET
参数
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
page | 是 | int | 当前页码,从1开始 |
limit | 是 | int | 每页显示记录数 |
order | 否 | string | 排序方式,可选值(asc、desc) |
orderField | 否 | string | 排序字段 |
deptId | 是 | string | 门诊ID |
patientId | 否 | string | 患者id |
name | 否 | string | 患者姓名 |
phone | 否 | string | 患者手机号 |
type | 否 | string | 类型(0初诊、1复诊) |
status | 否 | string | 状态(0正常,1挂起) |
返回示例
{
"code": 0,
"msg": "success",
"data": {
"total": 9,
"list": [
{
"id": "1696814098949873665",
"patientId": "1696724472704835586",
"dateOfOnset": "",
"historyOfPresentIllness": "",
"pastHistory": "",
"allergyHistory": "",
"temperature": "",
"caseId": null,
"description": "",
"bloodPressure": "",
"bloodSugar": "",
"heartRate": "",
"chiefComplaint": "",
"diagnosticResults": "444",
"type": 0,
"drugExpenses": "0",
"diagnosisAndTreatmentFees": "0",
"treatmentFee": "0",
"consumableExpenses": "0",
"totalAmount": "0",
"buyType": "1",
"buyStatus": null,
"creator": "1691993842672078850",
"createDate": "2023-08-30 17:16:21",
"updater": null,
"updateDate": null,
"status": 0,
"remark": "",
"name": "冉启洋",
"gender": "0",
"age": "79",
"month": "68",
"day": "88",
"phone": "13232333455",
"address": "3",
"serial": null,
"prescriptionList": null,
"list": null,
"patientDTO": null,
"endTime": null,
"startTime": null,
"deptDrugDTO": null,
"caseList": null
},
{
"id": "1696812081951023106",
"patientId": "1696724472704835586",
"dateOfOnset": "2023-08-15",
"historyOfPresentIllness": "",
"pastHistory": "",
"allergyHistory": "过敏史",
"temperature": "",
"caseId": null,
"description": "",
"bloodPressure": "",
"bloodSugar": "",
"heartRate": "",
"chiefComplaint": "主诉",
"diagnosticResults": "诊断",
"type": 1,
"drugExpenses": "0",
"diagnosisAndTreatmentFees": "0",
"treatmentFee": "0",
"consumableExpenses": "0",
"totalAmount": "0",
"buyType": "1",
"buyStatus": null,
"creator": "1691993842672078850",
"createDate": "2023-08-30 17:08:20",
"updater": null,
"updateDate": null,
"status": 0,
"remark": "",
"name": "冉启洋",
"gender": "0",
"age": "79",
"month": "68",
"day": "88",
"phone": "13232333455",
"address": "3",
"serial": null,
"prescriptionList": null,
"list": null,
"patientDTO": null,
"endTime": null,
"startTime": null,
"deptDrugDTO": null,
"caseList": null
}
]
}
}
返回参数说明
说明 | 类型 | 参数名 |
---|---|---|
病历id | Long | id |
患者信息ID | Long | patientId |
发病日期 | String | dateOfOnset |
现病史 | String | historyOfPresentIllness |
既往史 | String | pastHistory |
过敏史 | String | allergyHistory |
体温 | String | temperature |
复诊id | Long | caseId |
复诊描述 | String | description |
血压 | String | bloodPressure |
血糖 | String | bloodSugar |
心率 | String | heartRate |
主诉 | String | chiefComplaint |
诊断结果 | String | diagnosticResults |
类型(0初诊,1复诊) | Integer | type |
药品费 | String | drugExpenses |
诊疗费 | String | diagnosisAndTreatmentFees |
理疗费 | String | treatmentFee |
耗材费 | String | consumableExpenses |
总金额 | String | totalAmount |
收费类型(0:不收费 1:现金 2:微信 3:支付宝) | String | buyType |
是否挂帐(0:不挂帐 1:挂账) | String | buyStatus |
创建人 | Long | creator |
创建时间 | Date createDate | |
更新人 | Long | updater |
更新时间 | Date updateDate | |
状态 | Integer | status |
备注 | String | remark |
患者姓名 | String | name |
性别 | String | gender |
年龄 | String | age |
月 | String | month |
天 | String | day |
手机号 | String | phone |
地址 | String | address |
备注
- 更多返回错误代码请看首页的错误代码描述