1.URL

http://124.223.60.234:8080/system/asset/warehouse/queryWarehouseList

2.请求参数

2.1请求头

在Headers里面增加token:对应登录验证成功后,data里面对应的tokenId

2.2.参数示例

{
    "ids": ["F940B79790004404AAC277418FC71C5E"],
    "key":"",
    "pageNum":1,
    "pageSize":20
}

2.3.参数说明

字段 类型 说明 是否必须
ids List 组织唯一标识集合 Y
key String 模糊查询Key Y
pageNum int 分页查询当前页码,默认1 Y
pageSize int 分页查询每页显示条数,默认20 Y

3.接口应答

3.1.返回示例

{
    "code": 200,
    "message": "Operation succeeded",
    "data": {
        "total": 4,
        "size": 1,
        "data": [
            {
                "id": "51FD7A7FB1C24437A8949390BA47B152",
                "orgId": "F940B79790004404AAC277418FC71C5E",
                "orgName": "云息通信",
                "name": "仓库6",
                "code": "0006",
                "formType": 1,
                "centerLat": 15.643266,
                "centerLon": -91.985222,
                "radius": 0,
                "path": "[{\"lat\":15.643340362596092,\"lon\":-91.985202588745437},{\"lat\":15.643377168304548,\"lon\":-91.985173084446274},{\"lat\":15.643152459665481,\"lon\":-91.9850148341144},{\"lat\":15.643113716771751,\"lon\":-91.985038973995529}]",
                "address": "terminal de buses la mesilla, Carretera Panamericana, La Mesilla, La Democracia, Huehuetenango, Guatemala",
                "area": 144.774368,
                "status": 1,
                "descInfo": "xxxxxxxxxxxxxxxxxxx123",
                "fenceConfigs": null,
                "createTime": "2023-02-13 11:32:36",
                "creator": "F940B79790004404AAC277418FC71C5D"
            },
            {
                "id": "5C4B42BE197249F49DC9B80CE9ED00E3",
                "orgId": "F940B79790004404AAC277418FC71C5E",
                "orgName": "云息通信",
                "name": "仓库1",
                "code": "0001",
                "formType": 1,
                "centerLat": 15.643266,
                "centerLon": -91.985222,
                "radius": 0,
                "path": "[{\"lat\":15.643340362596092,\"lon\":-91.985202588745437},{\"lat\":15.643377168304548,\"lon\":-91.985173084446274},{\"lat\":15.643152459665481,\"lon\":-91.9850148341144},{\"lat\":15.643113716771751,\"lon\":-91.985038973995529}]",
                "address": "terminal de buses la mesilla, Carretera Panamericana, La Mesilla, La Democracia, Huehuetenango, Guatemala",
                "area": 144.774365,
                "status": 0,
                "descInfo": "123456",
                "fenceConfigs": null,
                "createTime": "2023-02-13 11:24:19",
                "creator": "F940B79790004404AAC277418FC71C5D"
            },
            {
                "id": "8E3D169164224408B361D261A629689E",
                "orgId": "F940B79790004404AAC277418FC71C5E",
                "orgName": "云息通信",
                "name": "仓库7",
                "code": "0007",
                "formType": 1,
                "centerLat": 15.643266,
                "centerLon": -91.985222,
                "radius": 0,
                "path": "[{\"lat\":15.643340362596092,\"lng\":-91.985202588745437},{\"lat\":15.643377168304548,\"lng\":-91.985173084446274},{\"lat\":15.643152459665481,\"lng\":-91.9850148341144},{\"lat\":15.643113716771751,\"lng\":-91.985038973995529}]",
                "address": "terminal de buses la mesilla, Carretera Panamericana, La Mesilla, La Democracia, Huehuetenango, Guatemala",
                "area": 144.774365,
                "status": 1,
                "descInfo": "xxxxxxxxxxxxxxxxxxx123",
                "fenceConfigs": null,
                "createTime": "2023-02-13 11:35:58",
                "creator": "F940B79790004404AAC277418FC71C5D"
            },
            {
                "id": "EF84F1C77893487C8248956FF1AA8586",
                "orgId": "F940B79790004404AAC277418FC71C5E",
                "orgName": "云息通信",
                "name": "仓库5",
                "code": "0005",
                "formType": 1,
                "centerLat": 15.643266,
                "centerLon": -91.985222,
                "radius": 0,
                "path": "[{\"lat\":15.643340362596092,\"lng\":-91.985202588745437},{\"lat\":15.643377168304548,\"lng\":-91.985173084446274},{\"lat\":15.643152459665481,\"lng\":-91.9850148341144},{\"lat\":15.643113716771751,\"lng\":-91.985038973995529}]",
                "address": "terminal de buses la mesilla, Carretera Panamericana, La Mesilla, La Democracia, Huehuetenango, Guatemala",
                "area": 144.774368,
                "status": 1,
                "descInfo": "xxxxxxxxxxxxxxxxxxx123",
                "fenceConfigs": null,
                "createTime": "2023-02-13 11:31:12",
                "creator": "F940B79790004404AAC277418FC71C5D"
            }
        ]
    }
}

3.2.返回结果说明

字段 类型 说明
code int 返回状态
message String 返回结果描述
data object 返回结果体

data说明

字段 类型 说明
total int 总条数
size int 共几页
data object 返回结果体

data说明

字段 类型 说明
id String 仓库唯一标识
orgId String 公司唯一标识
orgName String 公司名称
name String 仓库名称
code String 仓库编码
formType int 仓库类型(1:多边形;2:圆形)
centerLat double 中心点纬度
centerLon double 中心点经度
radius int 仓库围栏半径,单位m;如果圆形则此值有效
path String 仓库围栏点集合
address String 仓库地址
area double 仓库面积
status int 0:禁用;1:启用
descInfo String 描述
createTime String 创建时间
creatorId String 创建用户唯一标识
作者:admin  创建时间:2024-11-15 15:32
最后编辑:admin  更新时间:2025-04-23 17:26