文档
测试

列表查询

GET
http://localhost:8080/store/items/{pageNum}/{pageSize}

接口描述

分页列表查询,带有两个路径参数,pageNum为当前页,pageSize为每页条数

响应参数

参数名
类型
描述
必填
code
int
示例:0
必填
msg
string
示例:Success
必填
data
array
数据列表
必填
id
int
示例:1
必填
brand
string
示例:Starbucks
必填
country
string
示例:中国
必填
city
string
示例:北京市
必填
centerLongitude
string
示例:116.407526
必填
centerLatitude
string
示例:39.904030
必填
storeNumber
string
示例:234
必填
storeSerial
string
示例:32320-116537
必填
storeName
string
示例:北京华宇时尚店
必填
storeAddress
string
示例:海淀区数码大厦B座华宇时尚购物中心内蓝色港湾国际商区1座C1-3单元首层
必填
longitude
string
示例:116.325701
必填
latitude
string
示例:39.966427
必填
phoneNumber
string
示例:010-51626616
必填
postCode
string
示例:100086
必填
ownerShipType
string
示例:Company Owned
必填
status
int
示例:1
必填
createTime
string
示例:2020-09-25T15:18:07.000+00:00
必填
updateTime
string
示例:2020-09-25T15:18:07.000+00:00
必填

说明 / 示例

如:http://localhost:8080/city/items/1/10 响应如下: { "code": 0, "msg": "Success", "data": [ { "id": 1, "brand": "Starbucks", "country": "中国", "city": "北京市", "centerLongitude": "116.407526 ", "centerLatitude": "39.904030 ", "storeNumber": "234", "storeSerial": "32320-116537", "storeName": "北京华宇时尚店", "storeAddress": "海淀区数码大厦B座华宇时尚购物中心内蓝色港湾国际商区1座C1-3单元首层", "longitude": "116.325701 ", "latitude": "39.966427 ", "phoneNumber": "010-51626616", "postCode": "100086", "ownerShipType": "Company Owned", "status": 1, "createTime": "2020-09-25T15:18:07.000+00:00", "updateTime": "2020-09-25T15:18:07.000+00:00" }, { "id": 2, "brand": "Starbucks", "country": "中国", "city": "北京市", "centerLongitude": "116.407526 ", "centerLatitude": "39.904030 ", "storeNumber": "234", "storeSerial": "32447-132306", "storeName": "北京蓝色港湾圣拉娜店", "storeAddress": "朝阳区朝阳公园路6号二层C1-3单元及二层阳台太阳宫中路12号", "longitude": "116.475817 ", "latitude": "39.949311 ", "phoneNumber": "010-59056343", "postCode": "100020", "ownerShipType": "Company Owned", "status": 1, "createTime": "2020-09-25T15:18:07.000+00:00", "updateTime": "2020-09-25T15:18:07.000+00:00" }, { "id": 3, "brand": "Starbucks", "country": "中国", "city": "北京市", "centerLongitude": "116.407526 ", "centerLatitude": "39.904030 ", "storeNumber": "234", "storeSerial": "17477-161286", "storeName": "北京太阳宫凯德嘉茂店", "storeAddress": "朝阳区太阳宫凯德嘉茂一层01-44/45号东三环北路27号", "longitude": "116.468953 ", "latitude": "39.993892 ", "phoneNumber": "010-84150945", "postCode": "100028", "ownerShipType": "Company Owned", "status": 1, "createTime": "2020-09-25T15:18:07.000+00:00", "updateTime": "2020-09-25T15:18:07.000+00:00" } ] }