POST DoctorWard/selectWardFamilyCount
获取守护统计
Request Information
URI Parameters
None.
Body Parameters
WFLIPars| Name | Description | Type | Additional information |
|---|---|---|---|
| dtType |
昨天 OR 7天内(1 or 7) |
integer |
None. |
| doctor_id |
医生ID |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"code": "200",
"data": {
"dtType": 1,
"doctor_id": 2
},
"msg": null
}
application/xml, text/xml
Sample:
<WFLIPars xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HL.Basis.Web.Models.Parameter"> <doctor_id>2</doctor_id> <dtType>1</dtType> </WFLIPars>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
获取守护统计
WardFamilyCountResult| Name | Description | Type | Additional information |
|---|---|---|---|
| no_count |
未刷牙数量 |
integer |
None. |
| bad_count |
不好的数量 |
integer |
None. |
| good_count |
好的数量 |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": "200",
"data": {
"no_count": 1,
"bad_count": 2,
"good_count": 3
},
"msg": null
}
application/xml, text/xml
Sample:
<WardFamilyCountResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HL.Basis.Web.Models.Result"> <bad_count>2</bad_count> <good_count>3</good_count> <no_count>1</no_count> </WardFamilyCountResult>