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.

61 lines
777 B

### 添加BOM(AddConfigBom)
此接口用于添加BOM
---
### 基本信息
方法:POST
URL: http://localhost:8033/open/AddConfigBom
---
### 请求
请求参数
| 参数名 | 类型 | 必填 | 说明 |
| :-- | :-- | :-- | :-- |
| profile | string | 是 | 厂区代码 |
| bomId | string | 是 | bomid |
| descriptions | string | 否 | bom描述 |
示例 1:添加bom
```
{
"data": {
profile:"测试厂区",
bomId:"BOM001",
descriptions:"新的bom",
}
}
```
---
### 响应
执行成功时,响应如下:
```
{
"clock": "2023-06-25 20:00:00.000",
"status": "ok",
"data": {}
}
```
执行报错:
```
{
"clock": "2023-06-25 20:00:00.000",
"status": "exception",
"message": "添加Bom失败",
"data": {}
}
```