文档
测试

退还押金 查询列表接口

GET
http://172.18.0.33:9001/boothInfo/depositList

请求头

参数名
类型
描述
必填
token
string
必填

请求参数

参数名
类型
描述
必填
page
int
必填
size
int
必填
exhibitionHallName
string
展馆名称
可选
depositTime
string
押金退还申请时间
可选

响应参数

参数名
类型
描述
必填
exhibitorName
string
参展商名称
必填
exhibitionHallNum
string
展馆号
必填
boothNum
string
展位号
必填
buildCompany
string
搭建商
必填
deposit
int
是否已退回押金(0=未退回,1=已退回,2=已驳回)
必填
depositTime
LocalDateTime
退还押金申请时间
必填
boothId
long
展位Id
必填

说明 / 示例

请求: http://172.18.0.33:9001/boothInfo/depositList?page=1&size=2&exhibitionHallName=会展中心&depositTime=2023-07-20 09:51:22 应答: ```language { "isok": 1, "msg": "请求成功", "data": { "number": 2, "total": 1, "records": [ { "exhibitorName": "会展无忧",//参展商 "exhibitionHallNum": "W2",//展馆号 "boothNum": "A12",//展位号 "buildCompany": "济南槐荫搭建集团",//搭建商 "deposit": 0, //是否已退回押金(0=未退回,1=已退回,2=已驳回) "boothId": 1,//展位Id "depositTime": "2023-07-20 09:51:22"//退还押金申请时间 } ], "page": 1, "currentPage": 1 } } ```