MES标准开放接口
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.

75 lines
1.4 KiB

### 修改供应商
此接口用于修改WMS中的供应商
此接口需要认证,详情请查看《认证方式》。
---
### 基本信息
方法:POST
URL: http://localhost:8033/open/UpdateWmsSupplier
---
### 请求
__请求参数__
| 参数名 | 类型 | 必填 | 说明 |
| :-- | :-- | :-- | :-- |
| profile | String | 是 | 厂区|
| code | string | 是 | 供应商编码 |
| name | string | 是 | 供应商名称 |
12 months ago
| status | string | 是 | 状态 1:开启 0:不开启 |
| country | string | 否 | 国家 |
| region | string | 否 | 省市 |
__请求示例:__
```
{
"data":{
12 months ago
"profile": "测试",
"code":"wndSupplier",
"name":"天天好集团aaa",
"status": 0,
"country": "china",
"region":"SH",
}
}
````
---
### 响应
__响应字段__
| 字段 | 类型 | 说明 |
| :-- | :-- | :-- |
| clock | string | 当前服务器时钟。 |
| status | string | 状态,ok:成功,error:错误,exception:异常 |
| data | object | 成功后返回具体内容 |
__data:__
| 字段 | 类型 | 说明 |
| :-- | :-- | :-- |
```
{
"clock": "2023-06-25 20:00:00.000",
"status": "ok",
"data": {
"key": "d2d0916d46cc497e83e69ea9e307a92c",
"status": 0,
"country": "china",
"region": "SH",
"code": "wndSupplier",
"name": "天天好集团aaa",
"oaId": "",
"address": "",
"contact": "",
"phone": ""
}
}
```