You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
1.4 KiB
83 lines
1.4 KiB
12 months ago
|
### 客户列表
|
||
|
此接口用于查询WMS中的客户
|
||
|
此接口需要认证,详情请查看《认证方式》。
|
||
|
|
||
|
---
|
||
|
|
||
|
### 基本信息
|
||
|
方法:POST
|
||
|
URL: http://localhost:8033/open/GetWmsCustomerList
|
||
|
|
||
|
---
|
||
|
|
||
|
### 请求
|
||
|
|
||
|
__请求参数__
|
||
|
|
||
|
| 参数名 | 类型 | 必填 | 说明 |
|
||
|
| :-- | :-- | :-- | :-- |
|
||
|
| profile | String | 是 | 厂区|
|
||
|
|
||
|
__请求示例:__
|
||
|
```
|
||
|
{
|
||
|
"data":{
|
||
|
"profile": "测试",
|
||
|
}
|
||
|
}
|
||
|
````
|
||
|
|
||
|
---
|
||
|
|
||
|
### 响应
|
||
|
__响应字段__
|
||
|
| 字段 | 类型 | 说明 |
|
||
|
| :-- | :-- | :-- |
|
||
|
| clock | string | 当前服务器时钟。 |
|
||
|
| status | string | 状态,ok:成功,error:错误,exception:异常 |
|
||
|
| data | object | 成功后返回具体内容 |
|
||
|
|
||
|
__data:__
|
||
|
| 字段 | 类型 | 说明 |
|
||
|
| :-- | :-- | :-- |
|
||
|
|
||
|
```
|
||
|
{
|
||
|
"clock": "2023-06-25 20:00:00.000",
|
||
|
"status": "ok",
|
||
|
"data": {
|
||
|
"records": [
|
||
|
{
|
||
|
"oa_id": null,
|
||
|
"code": "code002",
|
||
|
"name": "客户002",
|
||
|
"status": "",
|
||
|
"country": null,
|
||
|
"region": null,
|
||
|
"interior": 0,
|
||
|
"created": "2022-09-30 12:48:55.211",
|
||
|
"updated": "2022-09-30 12:48:55.211",
|
||
|
"key": "4f3fbb290d0e4007817edf5e3bac25f2",
|
||
|
"flag": 1
|
||
|
},
|
||
|
{
|
||
|
"oa_id": null,
|
||
|
"code": "code004",
|
||
|
"name": "客户004",
|
||
|
"status": "",
|
||
|
"country": null,
|
||
|
"region": null,
|
||
|
"interior": 0,
|
||
|
"created": "2022-09-30 12:53:16.581",
|
||
|
"updated": "2022-09-30 12:53:16.581",
|
||
|
"key": "e0ef13b856d14a759c5889a20f69e8c7",
|
||
|
"flag": 1
|
||
|
},
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
```
|
||
|
|
||
|
|