# 获取仓库信息

type:GET

endpoint: /api/tms/warehouse

Header:

Token:登录系统 API设置里面查看
1

Request:

/api/tms/warehouse
1

Response:

{
    "success": true,
    "message": "",
    "data": [
        {
            "id": 1,
            "name": "杨美仓",
            "phone": "15553696433",
            "countryCode": "1",
            "province": "广东省",
            "city": "深圳",
            "address": "坂田街道",
            "zipCode": "888888",
            "warehousePersonName": "uu",
            "warehousePersonPhone": "15553696433",
            "position": "1"
        }
    ]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
参数 类型 说明
success boolean 成功与否
message String 错误信息
data data

data 类型:

参数 类型 说明
id long 仓库id
name String 仓库名称
phone String 仓库联系电话
countryCode String 国家代码
province String
city String
address String 详细地址
zipCode String 邮政编码
warehousePersonName String 仓库负责人名称
warehousePersonPhone String 仓库负责人手机
position String 仓库坐标
Last Updated: 1/16/2024, 5:29:29 PM