POST Message/remindInfo

获取提醒统计和内容

Request Information

URI Parameters

None.

Body Parameters

RemindPars
NameDescriptionTypeAdditional information
doctor_id

医生ID

integer

None.

dtType

时间参数(1or7)

integer

None.

brushtype

刷牙参数(1没刷,2刷的不好,3刷的好)

integer

None.

msg_content

自定义消息

string

None.

Request Formats

application/json, text/json

Sample:
{
  "code": "200",
  "data": {
    "doctor_id": 1,
    "dtType": 2,
    "brushtype": 3,
    "msg_content": "sample string 4"
  },
  "msg": null
}

application/xml, text/xml

Sample:
<RemindPars xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HL.Basis.Web.Models.Parameter">
  <brushtype>3</brushtype>
  <doctor_id>1</doctor_id>
  <dtType>2</dtType>
  <msg_content>sample string 4</msg_content>
</RemindPars>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

获取提醒统计和内容

RemindInfoResult
NameDescriptionTypeAdditional information
f_count

家庭数

integer

None.

fd_count

成员数

integer

None.

message

消息

string

None.

Response Formats

application/json, text/json

Sample:
{
  "code": "200",
  "data": {
    "f_count": 1,
    "fd_count": 2,
    "message": "sample string 3"
  },
  "msg": null
}

application/xml, text/xml

Sample:
<RemindInfoResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HL.Basis.Web.Models.Result">
  <f_count>1</f_count>
  <fd_count>2</fd_count>
  <message>sample string 3</message>
</RemindInfoResult>