文档
测试

扣款管理 查询列表接口

GET
http://172.18.0.33:9001/deduction/deductionList

请求参数

参数名
类型
描述
必填
page
int
必填
size
int
必填
exhibitorName
string
参展商
可选
builderName
string
搭建商
可选
createdTime
string
创建时间
可选

响应参数

参数名
类型
描述
必填
exhibitorName
string
参展商名称
必填
exhibitionHallNum
string
展馆号
必填
boothNum
string
展位号
必填
builderName
string
搭建商名称
必填
createdTime
LocalDateTime
创建时间
必填

说明 / 示例

请求: http://172.18.0.33:9001/deduction/deductionList?page=1&size=2&exhibitorName=会展无忧&builderName=济南槐荫搭建集团&createdTime=2023-07-20 09:50:27 应答: ```language { "isok": 1, "msg": "请求成功", "data": { "number": 2, "total": 2, "records": [ { "exhibitorName": "会展无忧", "exhibitionHallNum": "W2", "boothNum": "A12", "deleted": 1, "builderName": "济南槐荫搭建集团", "createdTime": "2023-07-20 09:51:22", "id": 1681844215694782465 }, { "exhibitorName": "会展无忧", "exhibitionHallNum": "W2", "boothNum": "A12", "deleted": 1, "builderName": "济南槐荫搭建集团", "createdTime": "2023-07-20 09:58:27", "id": 1681845144028475393 } ], "page": 1, "currentPage": 1 } } ```