查询患者死亡基本信息
接口信息
- 接口路径:
/project/deathinfo/queryDathInfoBaseInfo
- 请求方式: POST
- 接口描述: 查询患者死亡基本信息列表
请求参数
Headers
| 参数名 |
类型 |
必填 |
说明 |
| Content-Type |
String |
是 |
application/json |
Body (JSON格式)
| 参数名 |
类型 |
必填 |
说明 |
| infoid |
Long |
否 |
baseInfo的ID |
| recordstate |
String |
否 |
记录状态 |
| caseNo |
String |
否 |
案例编号 |
| treatmenthospitalname |
String |
否 |
所在医疗机构名称 |
| treatmenthospitalno |
String |
否 |
所在医疗机构编码 |
| sex |
String |
否 |
性别 |
| name |
String |
否 |
姓名 |
| inpatientno |
String |
否 |
住院号 |
| age |
Long |
否 |
年龄 |
| bloodtype |
String |
否 |
血型 |
| idcardno |
String |
否 |
证件号码 |
| diagnosisname |
String |
否 |
疾病诊断名称 |
| donorno |
String |
否 |
捐献者编号 |
| gainhospitalno |
String |
否 |
器官获取机构编号 |
| gainhospitalname |
String |
否 |
器官获取机构名称 |
| deathtime |
String |
否 |
死亡时间(格式: yyyy-MM-dd HH:mm:ss) |
| deathreason |
String |
否 |
死亡原因 |
| deathjudgedocto |
String |
否 |
死亡判定医生一 |
| deathjudgedoctt |
String |
否 |
死亡判定医生二 |
| isspendremember |
Integer |
否 |
是否默哀缅怀仪式 (0: 否, 1: 是) |
| isrestoreremains |
Integer |
否 |
是否恢复遗体仪容 (0: 否, 1: 是) |
| responsibleuserid |
String |
否 |
负责人编号 |
| responsibleusername |
String |
否 |
负责人姓名 |
| pageNum |
Integer |
是 |
当前页码 |
| pageSize |
Integer |
是 |
每页记录数 |
请求示例
{
"pageNum": 1,
"pageSize": 10,
"name": "张三",
"caseNo": "CASE2026001",
"treatmenthospitalname": "某某医院"
}
返回数据
返回参数
| 参数名 |
类型 |
说明 |
| code |
Integer |
状态码 |
| msg |
String |
返回消息 |
| rows |
Array |
数据列表 |
| total |
Integer |
总记录数 |
rows数组元素结构
| 参数名 |
类型 |
说明 |
| infoid |
Long |
baseInfo的ID |
| id |
Long |
DeathBaseInfo的ID |
| recordstate |
String |
记录状态 |
| caseNo |
String |
案例编号 |
| treatmenthospitalname |
String |
所在医疗机构名称 |
| treatmenthospitalno |
String |
所在医疗机构编码 |
| sex |
String |
性别 |
| name |
String |
姓名 |
| inpatientno |
String |
住院号 |
| age |
Long |
年龄 |
| bloodtype |
String |
血型 |
| idcardno |
String |
证件号码 |
| diagnosisname |
String |
疾病诊断名称 |
| donorno |
String |
捐献者编号 |
| gainhospitalno |
String |
器官获取机构编号 |
| gainhospitalname |
String |
器官获取机构名称 |
| deathtime |
String |
死亡时间(格式: yyyy-MM-dd HH:mm:ss) |
| deathreason |
String |
死亡原因 |
| deathjudgedocto |
String |
死亡判定医生一 |
| deathjudgedoctt |
String |
死亡判定医生二 |
| isspendremember |
Integer |
是否默哀缅怀仪式 (0: 否, 1: 是) |
| isrestoreremains |
Integer |
是否恢复遗体仪容 (0: 否, 1: 是) |
| responsibleuserid |
String |
负责人编号 |
| responsibleusername |
String |
负责人姓名 |
返回示例
{
"msg": "查询成功",
"code": 200,
"rows": [
{
"infoid": 1,
"id": 100,
"recordstate": "已完成",
"caseNo": "CASE2026001",
"treatmenthospitalname": "某某医院",
"treatmenthospitalno": "H001",
"sex": "男",
"name": "张三",
"inpatientno": "IN20260001",
"age": 45,
"bloodtype": "A型",
"idcardno": "110101197901011234",
"diagnosisname": "脑出血",
"donorno": "DN2026001",
"gainhospitalno": "OPO001",
"gainhospitalname": "某某OPO机构",
"deathtime": "2026-01-25 10:30:00",
"deathreason": "脑干功能衰竭",
"deathjudgedocto": "李医生",
"deathjudgedoctt": "王医生",
"isspendremember": 1,
"isrestoreremains": 1,
"responsibleuserid": "U001",
"responsibleusername": "协调员张"
}
],
"total": 1
}
注意事项
- 该接口支持分页查询,pageNum和pageSize为必填参数
- 其他查询条件均为可选,支持多条件组合查询
- 时间格式统一为: yyyy-MM-dd HH:mm:ss
- 返回数据总数通过total字段返回,用于前端分页组件显示