文档
测试

展馆列表 搜索列表接口

GET
http://172.18.0.33:9001/exhibitionHallInfo/exhibitionHallList

请求头

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

请求参数

参数名
类型
描述
必填
page
int
必填
size
int
必填
exhibitionHallName
string
展馆名称
可选

响应参数

参数名
类型
描述
必填
exhibitionHallName
string
展馆名称
必填
city
string
城市
必填
createdTime
LocalDateTime
创建时间
必填
exhibitionHallCode
string
馆序
必填

说明 / 示例

请求: http://172.18.0.33:9001/exhibitionHallInfo/exhibitionHallList?page=1&size=2&exhibitionHallName=上海会展中心 应答: ```language { "isok": 1, "msg": "请求成功", "data": { "number": 2, "total": 1, "records": [ { "exhibitionHallName": "上海会展中心",//展馆名称 "city": "上海",//所在城市 "createdTime": "2023-07-25 11:29:19",//创建时间 "id": 1683680801818533889, "exhibitionHallCode": "E1, E1, E2, E3"//馆序 } ], "page": 1, "currentPage": 1 } } ```