简要描述:
- 获取陪检数据
接口版本:
版本号 | 制定人 | 制定日期 | 修订日期 |
---|---|---|---|
3.5.1 | 朱小乾 | 2022-12-08 | - |
请求URL:
- /api/mobileGuide/nurse/SearchCustomerInfos
请求方式:
- POST
请求头:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
Content-Type | 是 | string | 请求类型: application/json |
请求参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
nurseId | 否 | int | 护士Id |
keyWord | 否 | string | 关键字 |
start | 是 | datetime | 起始时间 |
end | 是 | datetime | 结束时间 |
返回示例:
正确时返回:
{
"code": 1,
"message": "操作成功",
"data": [
{
"recordId": 10427,
"outNo": "600130228",
"name": "吴根龙",
"mobile": "15924054178",
"gender": "0",
"idCard": "33082519630914311X",
"tag": 1,
"age": 57,
"organization": "",
"nurseId": 11,
"customerState": 1,
"departmentCount": 9,
"completeCount": 0
}
]
}
错误时返回:
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
recordId | int | 记录Id |
outNo | string | 体检号 |
name | string | 姓名 |
mobile | string | 手机号 |
gender | string | 性别 |
idCard | string | 身份号 |
tag | int | 客户类型 |
age | int | 年龄 |
organization | string | 机构 |
nurseId | int | 护士Id |
customerState | int | 状态:0:未登记。1:检查中。2:已完成 |
departmentCount | int | 科室数量 |
completeCount | int | 完成数量 |
备注:
-
文档更新时间: 2022-12-08 15:19