POST api/Quotation/raiseMessage

触发信息,含异常、警⽰等

Request Information

URI Parameters

None.

Body Parameters

RaiseMessageRequest
NameDescriptionTypeAdditional information
tenantId

租⼾Id

integer

None.

lineId

明细Id

integer

None.

level

消息类型,0=None,1=Information,2=Warning,3=Error,4=Exception,5=Fatal

integer

None.

message

消息内容

string

None.

Request Formats

application/json, text/json

Sample:
{
  "tenantId": 1,
  "lineId": 2,
  "level": 3,
  "message": "sample string 4"
}

Response Information

Resource Description

BaseResponseModel
NameDescriptionTypeAdditional information
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:
{
  "Status": "sample string 1",
  "ErrorText": "sample string 2",
  "Code": 3
}