患者端病历列表 - JianCongwen/Interface GitHub Wiki
- 请求地址: /api/v2/customer/records/{page}
- 请求方式: GET
- 请求参数: page 当前页数
- 返回:
{
"errcode":0,
"errmsg":"OK",
"result":{
"hasNext":0,
"pageNum":1,
"list":[
{
"age":"13岁",
"area":"北京市市辖区朝阳区",
"doctorId":8,
"doctorName":"张晓",
"patientId":5,
"patientName":"先看",
"payRecordId":142,
"phoneNumber":"18600898817",
"relationship":"女儿",
"sex":"男",
"createTime":"2019-08-07 15:33:06"
}
],
"total":1
}
}
- 返回值意义:
int hasNext;//是否有下一页
long total;//总数据条数
int pageNum;//当前页数
List list;
{Integer payRecordId;//咨询订单Id
Integer patientId;//患者档案Id
String patientName;//患者姓名
Integer doctorId;//医生Id
String doctorName;
String sex;
String age;
String relationship;
String area;
String phoneNumber;
String createTime;//购买时间}