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.
 

1.1 KiB

列出工艺类型下拉选项(ListProcessType)

此接口用于获取列出工艺类型下拉列表


基本信息

方法:POST

URL: http://localhost:8033/open/ListProcessType


请求

请求参数

参数名 类型 必填 说明
profile string 厂区代码
search string 工艺类型选项模糊查询

示例 1:模糊查询工艺类型选项

{
    "data": {
        profile: "测试厂区",
        search: "双玻",
    }
}

响应

响应字段

字段 类型 说明
SourceId string id
SourceValue string 选项值
SourceDesc string 选项描述

查询成功时,响应如下:

{
  "clock": "2023-06-25 20:00:00.000",
  "status": "ok",
  "data":{
    list:[{
        SourceId: 1,
        SourceValue: "双玻组件",
        SourceDesc: "双玻组件"
    }]
  }
}

查询报错:

{
  "clock": "2023-06-25 20:00:00.000",
  "status": "exception",
  "message": "查询错误",
  "data": {}
}