POST api/Pcb/QueryOrderProcess

Check Fabrication Status

Request Information

URI Parameters

None.

Body Parameters

Request Parameters

QueryOrderProcessRequest
NameDescriptionTypeAdditional information
OrderNo

Order Number (Such as 'W0002AS1')

string

Required

Request Formats

application/json, text/json

Sample:
{
  "OrderNo": "sample string 1"
}

Response Information

Resource Description

QueryOrderProcessResponse
NameDescriptionTypeAdditional information
AllProcess

Order production of all the required processes ,eg MI,Board Cutting ,AOI...,each order process may not be the same.

Collection of string

None.

List

List of completed processes ,name and time

Collection of OrderProcesModel

None.

Status

Request processing results ('ok' or 'error')

string

None.

ErrorText

Error Description ( Empty when request processing successfully )

string

None.

Code

状态码

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "AllProcess": [
    "sample string 1",
    "sample string 2"
  ],
  "List": [
    {
      "Name": "sample string 1",
      "Time": "2025-05-05T20:04:00.4100818+08:00"
    },
    {
      "Name": "sample string 1",
      "Time": "2025-05-05T20:04:00.4100818+08:00"
    }
  ],
  "Status": "sample string 1",
  "ErrorText": "sample string 2",
  "Code": 3
}