# AIO/血液透析
* [查詢QR資訊](#查詢QR資訊)
* [查詢血液透析資訊](#查詢血液透析資訊)
## 查詢QR資訊
```url=
GET /qr/measure/info
```
### Query Params
| 欄位 | 型態 | 必填 | 說明 |
|---|---|---|---|
### Request Body Example
```json
```
### Response Body Param
| 欄位 | 型態 | 說明 |
|---|---|---|
|householdMemberId | string | 用戶ID|
|name | string | 用戶名稱|
|gender | number | 用戶性別. 1: 男 2: 女|
### Response Body Example
```json
{
"httpCode": 200,
"result": {
"data": {
"householdMemberId": "qwesddswwwqe-wqesdasd-dcczx",
"name": "王大明",
"gender": 1
}
}
}
```
---
## 查詢血液透析資訊
```url=
GET /third/kdams/hd/get
```
### Query Params
| 欄位 | 型態 | 必填 | 說明 |
|---|---|---|---|
### Request Body Example
```json
```
### Response Body Param
| 欄位 | 型態 | 說明 |
|---|---|---|
|dialysisDate | string | 透析日期 YYYY/MM/DD|
|dialysisStartTime | string | 透析開始時間 HH:MM|
|dialysisEndTime | string | 透析結束時間 HH:MM|
|patientInfo | json object | 病患資訊|
|-name | string | 病患姓名|
|-medId | string | 病歷號|
|-insurance | string | 保險別|
|-source | string | 來源|
|-birthday | string | 出生日期 YYYY/MM/DD|
|-bedNo | string | 床號|
|-area | string | 區域|
|-shift | string | 班別|
|-doctor | string | 主治醫師 |
|-nurse | string | 護理人員|
|physio | json object | 透析資訊|
|-beginSp | string | 收縮壓(開始)|
|-beginDp | string | 舒張壓(開始)|
|-beginPulse | string | 脈搏(開始)|
|-beginPosId | string | 姿勢(開始)|
|-endSp | string | 收縮壓(結束)|
|-endDp | string | 舒張壓(結束)|
|-endPulse | string | 脈搏(結束)|
|-endPosId | string | 姿勢(結束)|
|-iniWeight | string | 體重(開始)|
|-delWeightWheelchair | string | 扣重(輪椅)|
|-delWeightOther | string | 扣重(其他)|
|-beginWeight | string | 標準體重|
|-iniDehydra | string | 預計脫水|
|-delDehydraFood | string | 加重(食物)|
|-delDehydraInject | string | 加重(針劑)|
|-beginDehydra | string | 總脫水|
|-endWeight | string | 體重(結束)|
|-endDehydra | string | 實際脫水|
|-review | string | 脫水量檢討|
|evalue | json object | 洗後評估|
|-ak | string | 凝固狀態 -/+-/++/+++/Clot|
|-loop | string | 迴路管腔室 -/+-/++/+++/Clot|
|-fistula | string | 廔管|
|-other | string | 廔管其他|
|-endRecord | string | 透析後護理紀錄|
|-endTime | string | 護理紀錄時間 YYYY/MM/DD HH:MM:SS|
|happens | json array | 透析護理紀錄|
|-nurseName | string | 護士名稱|
|-dateTime | string | 紀錄時間 YYYY/MM/DD HH:MM|
|-qtype | string | 分類|
|-occur | string | 狀況|
|-dispose | string | 處置|
### Response Body Example
```json
{
"dialysisDate": "2021/09/13",
"dialysisStartTime": "10:08",
"dialysisEndTime": "12:00",
"patientInfo":
{
"name": "黎明",
"medId": "00005",
"id": "G444444444",
"insurance": null,
"source": null,
"birthday": "1990/11/14",
"bedNo": "A1",
"area": "A",
"shift": "早",
"doctor": "醫生1",
"nurse": "護理師1"
},
"physio":
{
"beginSp": "150",
"beginDp": "130",
"beginPulse": "80",
"beginPosId": "臥",
"endSp": "100",
"endDp": "90",
"endPulse": "70",
"endPosId": "立",
"iniWeight": "60.0",
"delWeightWheelchair": "3.0",
"delWeightOther": "2.0",
"beginWeight": "1.0",
"iniDehydra": "54.0",
"delDehydraFood": "1.0",
"delDehydraInject": "2.0",
"beginDehydra": "57.0",
"endWeight": "50.0",
"endDehydra": "10.0",
"review": "1111111111111檢討"
},
"evalue":
{
"ak": "Clot",
"loop": "-",
"fistula": "不易止血",
"other": null,
"endRecord": "透析後評估test123",
"endTime": "2021/09/15 00:00:00"
},
"happens": [
{
"nurseName": "護理長1",
"dateTime": "2021/09/17 15:00",
"qtype": "問題",
"occur": "狀況1",
"dispose": "處置1"
},
{
"nurseName": "護理長1",
"dateTime": "2021/09/16 12:00",
"qtype": "問題",
"occur": "狀況2",
"dispose": "處置2"
}]
}
```
---