文档
测试

03二手需求查

POST
{{host}}store/lookup_ershou_xuqiu

说明 / 示例

# 根据需求id查 ```language { "id":1 } ``` ```language { "data": { "create_time": "Tue, 13 Oct 2020 20:29:06 GMT", "id": 1, "is_delete": "0", "name": "需要二手1.5L 海尔冰箱", "order_id": null, "phone": "13891111111", "status": "1", "user_info_id": 1, "yiyong_nianxian": 3, "yuqi_price": 1001 }, "msg": "", "status": 1 } ``` # 根据状态查 ```language { "status":"1", "current_page":1, "page_size":10 } ``` ```language { "list": [ { "create_time": "Tue, 13 Oct 2020 20:29:06 GMT", "id": 1, "is_delete": "0", "name": "需要二手1.5L 海尔冰箱", "order_id": null, "phone": "13891111111", "status": "1", "user_info_id": 1, "yiyong_nianxian": 3, "yuqi_price": 1001 } ], "status": 1, "total": 1 } ``` # 根据发布人id和状态查 ``` { "user_info_id":1, "status":"1", "current_page":1, "page_size":10 } ``` ```language { "list": [ { "create_time": "Tue, 13 Oct 2020 20:29:06 GMT", "id": 1, "is_delete": "0", "name": "需要二手1.5L 海尔冰箱", "order_id": null, "phone": "13891111111", "status": "1", "user_info_id": 1, "yiyong_nianxian": 3, "yuqi_price": 1001 } ], "status": 1, "total": 1 } ```