列表
# 列表
- **请求URL**
> [{{URL}}/payment_order](#)
- **请求方式**
>**get**
- **请求参数**
| 请求参数 | 参数类型 | 参数说明 | 是否必填 |
| :-------- | :--------| :------ | :------ |
| start_time|string| 开始时间| o|
| end_time|string| 结束时间| o|
| supplier_customer_id|string| 供应商id| o|
| supplier_customer_name|string| 供应商| o|
- **错误码**
```java
500 失败
```
- **返回示例**
>
```java
{
"code": 200,
"message": "",
"data": {
"current_page": 1,
"data": [
{
"id": 1, --id
"date": "2021-12-13 00:00:00", --付款时间
"supplier_customer_id": 6, --供应商id
"company_id": 1, --公司id
"tax_money": "6000.00", --付款金额
"receiving_account": "1000000", --收款账号
"remark": "", --备注
"status": 1,
"create_userid": 1,
"update_userid": 0,
"created_at": "2021-12-13 15:24:57",
"updated_at": null,
"supplier_customer_name": "好朋友结算单位", --供应商名字
"create_username": "你好", --创建人
"update_username": ""
}
],
"first_page_url": "http://st.text/pc/payment_order?page=1",
"from": 1,
"last_page": 1,
"last_page_url": "http://st.text/pc/payment_order?page=1",
"next_page_url": null,
"path": "http://st.text/pc/payment_order",
"per_page": 20,
"prev_page_url": null,
"to": 2,
"total": 2,
"all_page_sum": { --合计
"tax_money_sum": 24000
}
}
}
```