From e8c058d1049d8a2c02121ea3d262bc2e6220f1a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=95=E6=88=90=E6=97=AD?= <1043274364@qq.com> Date: Wed, 28 Jun 2023 13:34:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=A7=E5=93=81=E7=BB=91=E5=AE=9Abom?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mes/BOM/产品绑定BOM.md | 61 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 mes/BOM/产品绑定BOM.md diff --git a/mes/BOM/产品绑定BOM.md b/mes/BOM/产品绑定BOM.md new file mode 100644 index 0000000..f50e665 --- /dev/null +++ b/mes/BOM/产品绑定BOM.md @@ -0,0 +1,61 @@ +### 产品绑定BOM(ProductBindBom) + +此接口用于产品绑定BOM信息 + +--- + +### 基本信息 + +方法:POST + +URL: http://localhost:8033/open/ProductBindBom + +--- + +### 请求 + +请求参数 + +| 参数名 | 类型 | 必填 | 说明 | +| :-- | :-- | :-- | :-- | +| profile | string | 是 | 厂区代码 | +| productCode | string | 是 | 产品编码 | +| bomId | string | 是 | BomId | + +示例 1:产品绑定BOM信息 + +``` +{ + "data": { + profile:"测试厂区", + productCode:"088+089ART-MW", + bomId:"1407" + } +} +``` + +--- + +### 响应 + + +执行成功时,响应如下: + +``` +{ + "clock": "2023-06-25 20:00:00.000", + "status": "ok", + "data": {} +} +``` + +执行报错: + +``` +{ + "clock": "2023-06-25 20:00:00.000", + "status": "exception", + "message": "执行失败", + "data": {} +} +``` \ No newline at end of file