查询所有的用药提醒记录
请求地址: v1/medicationReminders/queryDetailByRemindersRecordId/{remindersRecordId}
HTTP请求方式: GET
请求参数说明
| 参数名称 | 参数类型 | 参数说明 |
|---|---|---|
| remindersRecordId | long | 用药提醒记录id |
响应结果示例
{
"ret_code": 0,
"ret_values": {
"endDate": 1463011200000,
"expire": false,
"manualCloseReminder": false,
"remindersTime": "10:00",
"id": 1,
"remindersDesc": "记得提醒我啊",
"startDate": 1463011200000,
"medicationUsages": [
{
"medicationName": "感冒药",
"medicationNum": 3,
"pharmaceuticalUnit": "粒"
}
]
} ,
"message": "获取成功"
}