POST api/orderLine/PaisanOrderAdd

Request Information

URI Parameters

None.

Body Parameters

PaisanOrderLineAddReq
NameDescriptionTypeAdditional information
uuid

string

None.

userId

string

None.

qihao

date

None.

goodsType

string

None.

zhushu

integer

None.

beishu

integer

None.

fenshu

integer

None.

amount

integer

None.

remark

string

None.

outOrder

integer

None.

orderTime

date

None.

listDtl

Collection of PaisanOrderDtlAddReq

None.

Request Formats

application/json, text/json

Sample:
{
  "uuid": "sample string 1",
  "userId": "sample string 2",
  "qihao": "2026-06-06",
  "goodsType": "sample string 4",
  "zhushu": 5,
  "beishu": 6,
  "fenshu": 7,
  "amount": 8,
  "remark": "sample string 9",
  "outOrder": 10,
  "orderTime": "2026-06-06 05:19:40",
  "listDtl": [
    {
      "goodItem": "sample string 1"
    },
    {
      "goodItem": "sample string 1"
    }
  ]
}

application/xml, text/xml

Sample:
<PaisanOrderLineAddReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Football.WebApi.Controllers">
  <amount>8</amount>
  <beishu>6</beishu>
  <fenshu>7</fenshu>
  <goodsType>sample string 4</goodsType>
  <listDtl>
    <PaisanOrderDtlAddReq>
      <goodItem>sample string 1</goodItem>
    </PaisanOrderDtlAddReq>
    <PaisanOrderDtlAddReq>
      <goodItem>sample string 1</goodItem>
    </PaisanOrderDtlAddReq>
  </listDtl>
  <orderTime>2026-06-06T05:19:40.8042083+08:00</orderTime>
  <outOrder>10</outOrder>
  <qihao>2026-06-06T05:19:40.8042083+08:00</qihao>
  <remark>sample string 9</remark>
  <userId>sample string 2</userId>
  <uuid>sample string 1</uuid>
  <zhushu>5</zhushu>
</PaisanOrderLineAddReq>

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>