列表

# 列表 - **请求URL** > [{{URL}}/receipt_order](#) - **请求方式** >**get** - **请求参数** | 请求参数 | 参数类型 | 参数说明 | 是否必填 | | :-------- | :--------| :------ | :------ | | start_time|string| 开始时间| o| | end_time|string| 结束时间| o| | statement_customer_id|string| 客户id| o| | statement_customer_name|string| 客户id| o| - **错误码** ```java 500 失败 ``` - **返回示例** > ```java { "code": 200, "message": "", "data": { "current_page": 1, "data": [ { "id": 11, --id "date": "2021-11-25 00:00:00", --收款时间 "statement_customer_id": 3, --客户id "company_id": 1, --公司 "tax_money": "10000.00", -- 收款金额 "receiving_account": "10", --收款账号 "remark": "123",--卑职 "status": 1, "create_userid": 0, "update_userid": 0, "created_at": "2021-12-14 10:16:11", "updated_at": null, "statement_customer_name": "好朋友结算单位", --客户名称 "create_username": "", --创建人 "update_username": "" } ], "first_page_url": "http://st.text/pc/receipt_order?page=1", "from": 1, "last_page": 1, "last_page_url": "http://st.text/pc/receipt_order?page=1", "next_page_url": null, "path": "http://st.text/pc/receipt_order", "per_page": 20, "prev_page_url": null, "to": 10, "total": 10, "all_page_sum": { --合计 "tax_money_sum": 1045000 } } } ```