列表

# 列表 - **请求URL** > [{{URL}}/customer](#) - **请求方式** >**get** - **请求参数** | 请求参数 | 参数类型 | 参数说明 | 是否必填 | | :-------- | :--------| :------ | :------ | | id|string| id 客户 | M| | name|string| 客户 | M| | receiving_account|string|收款账号 ​| M| | type|string|类型 1:供货单位,2:结算单位 ​| M| | status|string|是否删除 1:正常 0删除 ​| M| | tax_num|string|税号 ​| M| - **错误码** ```java 500 失败 ``` - **返回示例** > ```java { "code": 200, "message": "", "data": { "current_page": 1, "data": [ { "id": 1, --id "company_id": 1, --公司id "name": "你好呀宝", --名字 "tax_num": "", --税号 "receiving_account": "10010", --收款账号 "addr": "", --开票单位地址 "tel": "", --开票单位电话 "account": "", --开票单位账号 "bank": "", --开票单位开户行 "type": 1, --类型 1:供货单位,2:结算单位 "status": 1, --是否删除 1:正常 0删除 "created_at": null, -- 创建时间 "updated_at": null } ], "first_page_url": "http://st.text/pc/basis/supplierInformation?page=1", "from": 1, "last_page": 1, "last_page_url": "http://st.text/pc/basis/supplierInformation?page=1", "next_page_url": null, "path": "http://st.text/pc/basis/supplierInformation", "per_page": 20, "prev_page_url": null, "to": 1, "total": 1 } } ```