string replacement, better exception names
This commit is contained in:
16
openapi.yaml
16
openapi.yaml
@ -168,6 +168,9 @@ paths:
|
||||
DATABASETAGBEGIN
|
||||
pdb_el_reader1
|
||||
DATABASETAGEND
|
||||
BINDINGHINTBEGIN
|
||||
stringreplacement
|
||||
BINDINGHINTEND
|
||||
STATEMENTBEGIN
|
||||
SELECT
|
||||
sn.seriennummer AS serialNumber
|
||||
@ -184,7 +187,7 @@ paths:
|
||||
LEFT JOIN ems ON sn.seriennummer = ems.Seriennummer
|
||||
LEFT JOIN modulindex ON sn.seriennummer = modulindex.sn_lp
|
||||
WHERE
|
||||
FIND_IN_SET(sn.seriennummer, @serialNumbers) != 0
|
||||
sn.seriennummer in (@serialNumbers)
|
||||
STATEMENTEND
|
||||
```
|
||||
parameters:
|
||||
@ -194,7 +197,7 @@ paths:
|
||||
schema:
|
||||
type: array
|
||||
items:
|
||||
type: integer
|
||||
type: string
|
||||
responses:
|
||||
200:
|
||||
description: Here are your pcbItem items
|
||||
@ -242,6 +245,12 @@ components:
|
||||
offensiveData:
|
||||
description: Input data which causes this error
|
||||
type: string
|
||||
caughtException:
|
||||
description: caught exception as a string
|
||||
type: string
|
||||
caughtExceptionMessage:
|
||||
description: message of caught exception
|
||||
type: string
|
||||
# --------------------------------------------------------------------------------------------------
|
||||
baseItem:
|
||||
description: Selected columns of the stammdaten table from pdb_el
|
||||
@ -389,9 +398,10 @@ components:
|
||||
nullable: true
|
||||
articleCode:
|
||||
type: integer
|
||||
format: int64
|
||||
nullable: true
|
||||
bomIndex:
|
||||
type: integer
|
||||
type: string
|
||||
nullable: true
|
||||
hasEmsUpdate:
|
||||
type: boolean
|
||||
|
Reference in New Issue
Block a user