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.

80 lines
1.3 KiB

### 列出电池片数量下拉选项(ListCellQty)
此接口用于获取列出电池片数量下拉列表
---
### 基本信息
方法:POST
URL: http://localhost:8033/open/ListCellQty
---
### 请求
请求参数
| 参数名 | 类型 | 必填 | 说明 |
| :-- | :-- | :-- | :-- |
| profile | string | 是 | 厂区代码 |
| search | string | 否 | 电池片数量选项模糊查询 |
示例 1:模糊查询电池片数量选项
```
{
"data": {
"profile": "测试",
"search": "108"
}
}
```
---
### 响应
响应字段
| 字段 | 类型 | 说明 |
| :-- | :-- | :-- |
| SourceId | string | id |
| sourceGroupName | string | 选项分组值 |
| sourceGroupDesc | string | 选项分组描述 |
| SourceValue | string | 选项值 |
| SourceDesc | string | 选项描述 |
查询成功时,响应如下:
```
{
"clock": "2023-07-05 14:58:36.623",
"status": "ok",
"data": {
"list": [
{
"sourceId": 53,
"sourceGroupName": "CELL_QTY",
"sourceGroupDesc": "电池片数量",
"sourceDesc": "108",
"sourceValue": "108",
}
]
}
}
```
查询报错:
```
{
"clock": "2023-06-25 20:00:00.000",
"status": "exception",
"message": "查询错误",
"data": {}
}
```