POST DoctorWard/WardFamilyList
获取医生守护全部数据
Request Information
URI Parameters
None.
Body Parameters
WardFamilyList| Name | Description | Type | Additional information |
|---|---|---|---|
| ord |
最后一条ID |
integer |
None. |
| pagenum |
每页数量 |
integer |
None. |
| dtType |
昨天 OR 7天内(1 or 7) |
integer |
None. |
| brushType |
刷牙类型(1未刷牙,2不达1标,3刷的好) |
integer |
None. |
| doctor_id |
医生ID |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"code": "200",
"data": {
"ord": 1,
"pagenum": 2,
"dtType": 3,
"brushType": 4,
"doctor_id": 5
},
"msg": null
}
application/xml, text/xml
Sample:
<WardFamilyList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HL.Basis.Web.Models.Parameter"> <brushType>4</brushType> <doctor_id>5</doctor_id> <dtType>3</dtType> <ord>1</ord> <pagenum>2</pagenum> </WardFamilyList>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
获取医生守护全部数据
Collection of WardMember| Name | Description | Type | Additional information |
|---|---|---|---|
| ord |
排序 |
integer |
None. |
| id |
成员ID |
integer |
None. |
| family_id |
账户ID |
integer |
None. |
| name |
成员名称 |
string |
None. |
| img |
头像 |
string |
None. |
| ward_status |
守护状态(0进行中,1拒绝,2普通守护,3重点守护) |
integer |
None. |
| isremind |
是否已提醒(0未提醒,1已提醒) |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": "200",
"data": [
{
"ord": 1,
"id": 2,
"family_id": 3,
"name": "sample string 4",
"img": "sample string 5",
"ward_status": 6,
"isremind": 7
},
{
"ord": 1,
"id": 2,
"family_id": 3,
"name": "sample string 4",
"img": "sample string 5",
"ward_status": 6,
"isremind": 7
}
],
"msg": null
}
application/xml, text/xml
Sample:
<ArrayOfWardMember xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HL.Basis.Web.Models.Result">
<WardMember>
<family_id>3</family_id>
<id>2</id>
<img>sample string 5</img>
<isremind>7</isremind>
<name>sample string 4</name>
<ord>1</ord>
<ward_status>6</ward_status>
</WardMember>
<WardMember>
<family_id>3</family_id>
<id>2</id>
<img>sample string 5</img>
<isremind>7</isremind>
<name>sample string 4</name>
<ord>1</ord>
<ward_status>6</ward_status>
</WardMember>
</ArrayOfWardMember>