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.

78 lines
1.2 KiB

### 列出产品标签形式(ListDfFamilys)
此接口用于获取列出产品标签形式下拉列表
---
### 基本信息
方法:POST
URL: http://localhost:8033/open/ListDfFamilys
---
### 请求
请求参数
| 参数名 | 类型 | 必填 | 说明 |
| :-- | :-- | :-- | :-- |
| profile | string | 是 | 厂区代码 |
| search | string | 否 | 产品标签形式编码、描述模糊查询 |
示例 1:模糊查询产品标签形式
```
{
"data": {
profile: "测试厂区",
search: "11BB",
}
}
```
---
### 响应
响应字段
| 字段 | 类型 | 说明 |
| :-- | :-- | :-- |
| familyCode | string | 标签形式编码 |
| descriptions | string | 标签形式描述 |
| aliasName | string | 创建者 |
| flag | int | 数据状态:0禁用 1启用 |
| createTime | string | 创建时间 |
查询成功时,响应如下:
```
{
"clock": "2023-06-25 20:00:00.000",
"status": "ok",
"data": [
{
familyCode: "AG-HD108N-415",
descriptions: "AG-HD108N-415",
aliasName: "mesadmin",
flag: 1,
createTime: "2022-01-10 23:10:01.890"
}
]
}
```
查询报错:
```
{
"clock": "2023-06-25 20:00:00.000",
"status": "exception",
"message": "查询错误",
"data": {}
}
```