文档
测试

待审项目 报馆审核 查询列表接口

GET
http://172.18.0.33:9001/boothInfo/boothList

请求头

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

请求参数

参数名
类型
描述
必填
page
int
必填
size
int
必填
exhibitionHallNum
string
展馆号
可选
boothNum
string
展位号
可选
relatedName
string
参展商或搭建商
可选
createdTime
string
创建时间
可选
type
1=审报馆,2=审缴费
必填

响应参数

参数名
类型
描述
必填
boothArea
string
展位面积
必填
exhibitorName
string
参展商名称
必填
exhibitionHallNum
string
展馆号
必填
boothNum
string
展位号
必填
createdTime
LocalDateTime
创建时间
必填
id
long
展位id
必填
boothType
string
展位类型
必填
status
string
状态(0=待审核报馆,1=报馆驳回,2=待上传图纸,3=审图驳回,4=创建订单,5=上传缴费凭证,6=缴费驳回,7=已报馆)
必填

说明 / 示例

请求: http://172.18.0.33:9001/boothInfo/boothList?page=1&size=2&exhibitionHallNum=W2&boothNum=A12&relatedName=会展无忧&createdTime=2023-07-15 10:31:13 应答: ```language { "isok": 1, "msg": "请求成功", "data": { "number": 2, "total": 1, "records": [ { "boothArea": "12", "exhibitorName": "会展无忧", "exhibitionHallNum": "W2", "boothNum": "A12", "buildCompany": "济南槐荫搭建集团", "createdTime": "2023-07-15 10:31:13", "id": 1, "boothType": "光标", "status": "1" } ], "page": 1, "currentPage": 1 } } ```