From e72a43a45f3149c0d9dbabadf277b37313ce22e2 Mon Sep 17 00:00:00 2001 From: ningyuqi <1210478975@qq.com> Date: Wed, 3 Jul 2024 11:43:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=A7=E6=88=90=E5=93=81=E5=88=86=E5=B8=83?= =?UTF-8?q?=E5=BC=8F=E8=B0=83=E5=85=A5=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../分布式调入、调出-产成品.md | 75 ------------------- 1 file changed, 75 deletions(-) diff --git a/wms/分布式调入、调出/分布式调入、调出-产成品.md b/wms/分布式调入、调出/分布式调入、调出-产成品.md index d6fe13a..e69de29 100644 --- a/wms/分布式调入、调出/分布式调入、调出-产成品.md +++ b/wms/分布式调入、调出/分布式调入、调出-产成品.md @@ -1,75 +0,0 @@ -### 新增客户 -此接口用于新增WMS中的客户 -此接口需要认证,详情请查看《认证方式》。 - ---- - -### 基本信息 -方法:POST -URL: http://localhost:8033/open/AddWmsCustomer - ---- - -### 请求 - -__请求参数__ - -| 参数名 | 类型 | 必填 | 说明 | -| :-- | :-- | :-- | :-- | -| profile | String | 是 | 厂区| -| code | String | 是 | 客户编码| -| name | String | 是 | 客户名称| -| country | String | 否 | 国家| -| region | String | 否 | 省市| -| status | int | 是 | 状态 1:启用 0:不启用| - -__请求示例:__ -``` -{ - "data":{ - "profile":"测试", - "code":"wnC1", - "name":"屋漏", - "country":"china", - "region":"beijing", - "status":0, - } -} -```` - ---- - -### 响应 -__响应字段__ -| 字段 | 类型 | 说明 | -| :-- | :-- | :-- | -| clock | string | 当前服务器时钟。 | -| status | string | 状态,ok:成功,error:错误,exception:异常 | -| data | object | 成功后返回具体内容 | - -__data:__ -| 字段 | 类型 | 说明 | -| :-- | :-- | :-- | - -``` -{ - "clock": "2023-06-25 20:00:00.000", - "status": "ok", - "data": { - "oa_id": null, - "code": "wnC1", - "name": "屋漏", - "status": "0", - "country": "china", - "region": "beijing", - "interior": 0, - "created": "2023-12-06 09:12:43.230", - "updated": "2023-12-06 09:12:43.230", - "key": "45960622d4a54c69b2e26a840056ff48", - "flag": 1 - } -} - -``` - -