POST api/PdSheet

盘点单上传

Request Information

URI Parameters

None.

Body Parameters

盘点单

PDInputSheet
NameDescriptionTypeAdditional information
manualId

string

None.

channelCode

string

None.

inventoryMore

integer

None.

checker

string

None.

checkDate

date

None.

createdBy

string

None.

createdDate

date

None.

sheetDate

date

None.

remark

string

None.

pdInputSheetGoods

Collection of PDInputSheetGoods

None.

Request Formats

application/json, text/json

示例:
{
  "manualId": "sample string 1",
  "channelCode": "sample string 2",
  "inventoryMore": 1,
  "checker": "sample string 3",
  "checkDate": "2025-04-08T19:01:38.3872489+08:00",
  "createdBy": "sample string 4",
  "createdDate": "2025-04-08T19:01:38.3872489+08:00",
  "sheetDate": "2025-04-08T19:01:38.3872489+08:00",
  "remark": "sample string 7",
  "pdInputSheetGoods": [
    {
      "barcode": "sample string 1",
      "quantity": 2
    },
    {
      "barcode": "sample string 1",
      "quantity": 2
    }
  ]
}

application/xml, text/xml

示例:
<PDInputSheet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/F360Service.Models.PdSheet">
  <channelCode>sample string 2</channelCode>
  <checkDate>2025-04-08T19:01:38.3872489+08:00</checkDate>
  <checker>sample string 3</checker>
  <createdBy>sample string 4</createdBy>
  <createdDate>2025-04-08T19:01:38.3872489+08:00</createdDate>
  <inventoryMore>1</inventoryMore>
  <manualId>sample string 1</manualId>
  <pdInputSheetGoods>
    <PDInputSheetGoods>
      <barcode>sample string 1</barcode>
      <quantity>2</quantity>
    </PDInputSheetGoods>
    <PDInputSheetGoods>
      <barcode>sample string 1</barcode>
      <quantity>2</quantity>
    </PDInputSheetGoods>
  </pdInputSheetGoods>
  <remark>sample string 7</remark>
  <sheetDate>2025-04-08T19:01:38.3872489+08:00</sheetDate>
</PDInputSheet>

application/x-www-form-urlencoded

示例:

Sample not available.

Response Information

Resource Description

Response
NameDescriptionTypeAdditional information
Flag

string

None.

MSG

string

None.

Response Formats

application/json, text/json

示例:
{
  "flag": "sample string 1",
  "msg": "sample string 2"
}

application/xml, text/xml

示例:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/F360Service.Models">
  <Flag>sample string 1</Flag>
  <MSG>sample string 2</MSG>
</Response>