POST api/orderLine/Edit

Request Information

URI Parameters

None.

Body Parameters

OrderLineEditReq
NameDescriptionTypeAdditional information
orderNo

string

None.

beishu

integer

None.

fenshu

integer

None.

userId

string

None.

remark

string

None.

state

integer

None.

status

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "orderNo": "sample string 1",
  "beishu": 2,
  "fenshu": 3,
  "userId": "sample string 4",
  "remark": "sample string 5",
  "state": 6,
  "status": 7
}

application/xml, text/xml

Sample:
<OrderLineEditReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Football.WebApi.Controllers">
  <beishu>2</beishu>
  <fenshu>3</fenshu>
  <orderNo>sample string 1</orderNo>
  <remark>sample string 5</remark>
  <state>6</state>
  <status>7</status>
  <userId>sample string 4</userId>
</OrderLineEditReq>

application/x-www-form-urlencoded

Sample:

Sample not available.

text/plain

Sample:

Sample not available.

Response Information

Resource Description

ResultMsg
NameDescriptionTypeAdditional information
success

boolean

None.

message

string

None.

code

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "message": "sample string 2",
  "code": 3
}

application/xml, text/xml

Sample:
<ResultMsg xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Football.Model">
  <Code>3</Code>
  <Message>sample string 2</Message>
  <Success>true</Success>
</ResultMsg>