From 6f9d02c16bc192ce99b6e7a43691adfeda95e575 Mon Sep 17 00:00:00 2001 From: zhizhi wu <2377881365@qq.com> Date: Thu, 6 May 2021 15:16:42 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E7=94=9F=E7=89=A9=E6=A0=B7?= =?UTF-8?q?=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 中医药/中医药测试.http | 50 +++++++++++++++++++++++++++++++++++++----- 1 file changed, 45 insertions(+), 5 deletions(-) diff --git a/中医药/中医药测试.http b/中医药/中医药测试.http index f9e2bdd..65eee10 100644 --- a/中医药/中医药测试.http +++ b/中医药/中医药测试.http @@ -13,7 +13,7 @@ # @name login # POST http://test.tall.wiki/gateway/tall/v1.0/users/signin -POST {{loaclhost_tall}}/users/signin +POST {{wiki_tall}}/users/signin # POST http://localhost:7030/v1.0/users/signin {{type}} @@ -21,7 +21,7 @@ POST {{loaclhost_tall}}/users/signin "client": 1, "data": { "credential": "123456", - "identifier": "doctorli" + "identifier": "doctor" }, "scene": 0, "type": 3 @@ -174,7 +174,47 @@ Authorization: Bearer {{login.response.body.$.data.token}} { "param": { - "hospitalization":"whj003", - "inpatientId":"3" + "hospitalization":"whj001", + "inpatientId":"3", + "codeNum":2 } -} \ No newline at end of file +} + +### 查询患者基本信息 +Post {{wiki}}/patient/selPatientMes +{{type}} +Authorization: Bearer {{login.response.body.$.data.token}} + +{ + "param": { + "hospitalization":"whj", + "inpatientId":"3", + "code":"F30", + "doctorName":"doctor", + "queryAuthority":0 + } +} + +### 添加生物样本 +Post {{wiki}}/biologicalSamples/addBiologicalSamples +{{type}} +Authorization: Bearer {{login.response.body.$.data.token}} + +{ + "param": { + "sampleTypes":[0,1], + "code":"F8001", + "collectTime":0 + } +} + +### 查询生物样本 +Post {{wiki}}/biologicalSamples/queryByPatient +{{type}} +Authorization: Bearer {{login.response.body.$.data.token}} + +{ + "param": { + "patientId": 1387698196658266112 + } +}