文档
测试

基地信息列表查询接口

POST
http://192.168.100.33:8081/hyzBaseInfo/getBaseListInfo

请求参数

参数名
类型
描述
必填
pageNo
int
页数
必填
pageSize
int
数据条数
必填

响应参数

参数名
类型
描述
必填
code
int
200成功,其余失败
必填
message
String
操作描述
必填
result
json
返回结果
必填
total
int
总条数
必填
resultList
json
详情数据
必填
id
int
主键id
必填
baseName
String
名称
必填
baseAddress
String
位置
必填
baseType
String
类型
必填
baseIntroduction
String
简介
必填
baseLatitudeAndLongitude
String
经纬度
必填
createTime
Date
yyyy-MM-dd HH:mm:ss
必填
imageList
List
图片集
必填
filePath
String
图片存储路径
必填
title
String
图片标题
必填
videoList
List
视频集
必填
filePath
String
视频存储路径
必填
title
String
视频标题
必填

说明 / 示例

请求参数: { "pageNo": "1", "pageSize":"10" } 返回参数: { "code": 200, "result": { "total": 1, "resultList": [ { "id": 2, "baseName": "test", "baseType": "公园", "baseAddress": "asdasd", "baseLatitudeAndLongitude": "106.550994,29.56411", "baseIntroduction": "asdasdasd", "imageList": [ { "filePath": "http://113.204.181.78:28089/digitalfile/image/1617777166585.jpg", "title": null } ], "videoList": [ { "filePath": "http://113.204.181.78:28089/digitalfile/video/1617777174880.mp4", "title": null } ], "createTime": "2021-04-07 14:33:00" } ] }, "message": "查询成功" }