文档
测试

月账单列表

GET
{{url_public}}/month/pay/list/admin

请求参数

参数名
类型
描述
必填
doctorId
int
示例:91862
必填
page
int
示例:1
必填
num
int
示例:2
必填

响应数据

```json { "errorCode": 0, "msgType": 1, "result": { "list": [ { "doctorId": 91862, // 医生id "moneyBefore": 3000, // 之前拖欠费用 "moneyCurr": 356, // 本月应付的账单费用 "time": 1601481600000, // 时间,月份的起始时间,毫秒 "timePay": 1601481600000, // 本月的支付时间,空表示没有支付 "typePay": 1 // 支付方式,1=线下支付,2=扫码支付 } ], "total": 1 } } ```