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.

75 lines
1.1 KiB

### 列出供应商(ListSupplier)
此接口用于获取供应商
---
### 基本信息
方法:POST
URL: http://localhost:8033/open/ListSupplier
---
### 请求
请求参数
| 参数名 | 类型 | 必填 | 说明 |
| :-- | :-- | :-- | :-- |
| profile | string | 是 | 厂区编码 |
| search | string | 否 | 供应商编码、名称模糊查询 |
示例 1:模糊查询供应商
```
{
"data": {
profile: "测试厂区",
search: "互利",
}
}
```
---
### 响应
响应字段
| 字段 | 类型 | 说明 |
| :-- | :-- | :-- |
| supplierCode | string | 供应商编码 |
| descriptions | string | 供应商名称 |=
查询成功时,响应如下:
```
{
"clock": "2023-06-25 20:00:00.000",
"status": "ok",
"data": {
list: [{
supplierCode: "1002210180009192",
descriptions: "无锡联晟光伏科技有限公司",
},
{
supplierCode: "1002210180009206",
descriptions: "无锡梦鼎光电科技有限公司",
}
]
}
}
```
查询报错:
```
{
"clock": "2023-06-25 20:00:00.000",
"status": "exception",
"message": "查询失败",
"data": {}
}
```