POST api/FWZ/GetPJSendDetail

获取服务站配件申请明细

请求参数信息

URI 参数

None.

Body 参数

BasePageRequestModel
NameDescriptionTypeAdditional information
keyid

string

None.

querystr

string

None.

pageindex

integer

None.

pagesize

integer

None.

startDate

string

None.

endDate

string

None.

status

string

None.

queryparam

Dictionary of string [key] and string [value]

None.

sign

string

None.

Request Formats

application/json, text/json

Sample:
{
  "keyid": "sample string 1",
  "querystr": "sample string 2",
  "pageindex": 3,
  "pagesize": 4,
  "startDate": "sample string 5",
  "endDate": "sample string 6",
  "status": "sample string 7",
  "queryparam": {
    "sample string 1": "sample string 2",
    "sample string 3": "sample string 4"
  },
  "sign": "sample string 8"
}

application/xml, text/xml

Sample:
<BasePageRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WLYServices.APIApplication.Models.RequestModel">
  <sign xmlns="http://schemas.datacontract.org/2004/07/WLYServices.APIApplication.Models">sample string 8</sign>
  <endDate>sample string 6</endDate>
  <keyid>sample string 1</keyid>
  <pageindex>3</pageindex>
  <pagesize>4</pagesize>
  <queryparam xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringstring>
      <d2p1:Key>sample string 1</d2p1:Key>
      <d2p1:Value>sample string 2</d2p1:Value>
    </d2p1:KeyValueOfstringstring>
    <d2p1:KeyValueOfstringstring>
      <d2p1:Key>sample string 3</d2p1:Key>
      <d2p1:Value>sample string 4</d2p1:Value>
    </d2p1:KeyValueOfstringstring>
  </queryparam>
  <querystr>sample string 2</querystr>
  <startDate>sample string 5</startDate>
  <status>sample string 7</status>
</BasePageRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

接口返回信息

返回信息说明

JMResponseOfViewPageModelOfApplySendDetailsViewModel
NameDescriptionTypeAdditional information
code

string

None.

msg

string

None.

data

ViewPageModelOfApplySendDetailsViewModel

None.

返回数据格式

application/json, text/json

Sample:
{
  "code": "sample string 1",
  "msg": "sample string 2",
  "data": {
    "Total": 1,
    "ModelList": [
      {
        "FId": "sample string 1",
        "Apply_Id": "sample string 2",
        "PJFNumber": "sample string 3",
        "FSendStatus": 0,
        "SendSource": 4,
        "SendFId": "sample string 5",
        "TransferCount": 6,
        "SendCount": 7,
        "SendTime": "2026-02-04 21:52:14",
        "ExpessType": 1,
        "ExpressCom": "sample string 8",
        "ExpressNo": "sample string 9",
        "ExpressFee": 10.0,
        "ReceiveTime": "2026-02-04 21:52:14",
        "FDeleteMark": true,
        "FEnabledMark": true,
        "FDescription": "sample string 11",
        "FCreatorTime": "2026-02-04 21:52:14",
        "FCreatorUserId": "sample string 12",
        "FLastModifyTime": "2026-02-04 21:52:14",
        "FLastModifyUserId": "sample string 13",
        "FDeleteTime": "2026-02-04 21:52:14",
        "FDeleteUserId": "sample string 14",
        "FCheckStatus": 15,
        "FCheckerId": "sample string 16",
        "FCheckTime": "2026-02-04 21:52:14",
        "FCheckMark": true,
        "ApplyCount": 17,
        "PJName": "sample string 18",
        "PJModel": "sample string 19",
        "UnitPrice": 20.0,
        "FWZ_FId": "sample string 21",
        "ApplyTime": "2026-02-04 21:52:14",
        "FWZName": "sample string 23",
        "FWZNumber": "sample string 24",
        "FWZFContactName": "sample string 25",
        "FWZPhone": "sample string 26",
        "FWZAddressDetail": "sample string 27",
        "JXSName": "sample string 28",
        "JXSNumber": "sample string 29"
      },
      {
        "FId": "sample string 1",
        "Apply_Id": "sample string 2",
        "PJFNumber": "sample string 3",
        "FSendStatus": 0,
        "SendSource": 4,
        "SendFId": "sample string 5",
        "TransferCount": 6,
        "SendCount": 7,
        "SendTime": "2026-02-04 21:52:14",
        "ExpessType": 1,
        "ExpressCom": "sample string 8",
        "ExpressNo": "sample string 9",
        "ExpressFee": 10.0,
        "ReceiveTime": "2026-02-04 21:52:14",
        "FDeleteMark": true,
        "FEnabledMark": true,
        "FDescription": "sample string 11",
        "FCreatorTime": "2026-02-04 21:52:14",
        "FCreatorUserId": "sample string 12",
        "FLastModifyTime": "2026-02-04 21:52:14",
        "FLastModifyUserId": "sample string 13",
        "FDeleteTime": "2026-02-04 21:52:14",
        "FDeleteUserId": "sample string 14",
        "FCheckStatus": 15,
        "FCheckerId": "sample string 16",
        "FCheckTime": "2026-02-04 21:52:14",
        "FCheckMark": true,
        "ApplyCount": 17,
        "PJName": "sample string 18",
        "PJModel": "sample string 19",
        "UnitPrice": 20.0,
        "FWZ_FId": "sample string 21",
        "ApplyTime": "2026-02-04 21:52:14",
        "FWZName": "sample string 23",
        "FWZNumber": "sample string 24",
        "FWZFContactName": "sample string 25",
        "FWZPhone": "sample string 26",
        "FWZAddressDetail": "sample string 27",
        "JXSName": "sample string 28",
        "JXSNumber": "sample string 29"
      }
    ],
    "PageIndex": 2,
    "PageSize": 3,
    "PageNum": 1
  }
}

application/xml, text/xml

Sample:
<JMResponseOfViewPageModelOfApplySendDetailsViewModel9SGuD_SZmrIMl6kOh xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WLYServices.APIApplication.Models">
  <code>sample string 1</code>
  <data xmlns:d2p1="http://schemas.datacontract.org/2004/07/WLYServices.APIApplication.APIHelp">
    <d2p1:ModelList xmlns:d3p1="http://schemas.datacontract.org/2004/07/WLYServices.Domain._02_ViewModel">
      <d3p1:ApplySendDetailsViewModel>
        <d3p1:ApplyCount>17</d3p1:ApplyCount>
        <d3p1:ApplyTime>2026-02-04T21:52:14.4828412+08:00</d3p1:ApplyTime>
        <d3p1:Apply_Id>sample string 2</d3p1:Apply_Id>
        <d3p1:ExpessType>上门自提</d3p1:ExpessType>
        <d3p1:ExpressCom>sample string 8</d3p1:ExpressCom>
        <d3p1:ExpressFee>10</d3p1:ExpressFee>
        <d3p1:ExpressNo>sample string 9</d3p1:ExpressNo>
        <d3p1:FCheckMark>true</d3p1:FCheckMark>
        <d3p1:FCheckStatus>15</d3p1:FCheckStatus>
        <d3p1:FCheckTime>2026-02-04T21:52:14.4828412+08:00</d3p1:FCheckTime>
        <d3p1:FCheckerId>sample string 16</d3p1:FCheckerId>
        <d3p1:FCreatorTime>2026-02-04T21:52:14.4828412+08:00</d3p1:FCreatorTime>
        <d3p1:FCreatorUserId>sample string 12</d3p1:FCreatorUserId>
        <d3p1:FDeleteMark>true</d3p1:FDeleteMark>
        <d3p1:FDeleteTime>2026-02-04T21:52:14.4828412+08:00</d3p1:FDeleteTime>
        <d3p1:FDeleteUserId>sample string 14</d3p1:FDeleteUserId>
        <d3p1:FDescription>sample string 11</d3p1:FDescription>
        <d3p1:FEnabledMark>true</d3p1:FEnabledMark>
        <d3p1:FId>sample string 1</d3p1:FId>
        <d3p1:FLastModifyTime>2026-02-04T21:52:14.4828412+08:00</d3p1:FLastModifyTime>
        <d3p1:FLastModifyUserId>sample string 13</d3p1:FLastModifyUserId>
        <d3p1:FSendStatus>待发货</d3p1:FSendStatus>
        <d3p1:FWZAddressDetail>sample string 27</d3p1:FWZAddressDetail>
        <d3p1:FWZFContactName>sample string 25</d3p1:FWZFContactName>
        <d3p1:FWZName>sample string 23</d3p1:FWZName>
        <d3p1:FWZNumber>sample string 24</d3p1:FWZNumber>
        <d3p1:FWZPhone>sample string 26</d3p1:FWZPhone>
        <d3p1:FWZ_FId>sample string 21</d3p1:FWZ_FId>
        <d3p1:JXSName>sample string 28</d3p1:JXSName>
        <d3p1:JXSNumber>sample string 29</d3p1:JXSNumber>
        <d3p1:PJFNumber>sample string 3</d3p1:PJFNumber>
        <d3p1:PJModel>sample string 19</d3p1:PJModel>
        <d3p1:PJName>sample string 18</d3p1:PJName>
        <d3p1:ReceiveTime>2026-02-04T21:52:14.4828412+08:00</d3p1:ReceiveTime>
        <d3p1:SendCount>7</d3p1:SendCount>
        <d3p1:SendFId>sample string 5</d3p1:SendFId>
        <d3p1:SendSource>4</d3p1:SendSource>
        <d3p1:SendTime>2026-02-04T21:52:14.4828412+08:00</d3p1:SendTime>
        <d3p1:TransferCount>6</d3p1:TransferCount>
        <d3p1:UnitPrice>20</d3p1:UnitPrice>
      </d3p1:ApplySendDetailsViewModel>
      <d3p1:ApplySendDetailsViewModel>
        <d3p1:ApplyCount>17</d3p1:ApplyCount>
        <d3p1:ApplyTime>2026-02-04T21:52:14.4828412+08:00</d3p1:ApplyTime>
        <d3p1:Apply_Id>sample string 2</d3p1:Apply_Id>
        <d3p1:ExpessType>上门自提</d3p1:ExpessType>
        <d3p1:ExpressCom>sample string 8</d3p1:ExpressCom>
        <d3p1:ExpressFee>10</d3p1:ExpressFee>
        <d3p1:ExpressNo>sample string 9</d3p1:ExpressNo>
        <d3p1:FCheckMark>true</d3p1:FCheckMark>
        <d3p1:FCheckStatus>15</d3p1:FCheckStatus>
        <d3p1:FCheckTime>2026-02-04T21:52:14.4828412+08:00</d3p1:FCheckTime>
        <d3p1:FCheckerId>sample string 16</d3p1:FCheckerId>
        <d3p1:FCreatorTime>2026-02-04T21:52:14.4828412+08:00</d3p1:FCreatorTime>
        <d3p1:FCreatorUserId>sample string 12</d3p1:FCreatorUserId>
        <d3p1:FDeleteMark>true</d3p1:FDeleteMark>
        <d3p1:FDeleteTime>2026-02-04T21:52:14.4828412+08:00</d3p1:FDeleteTime>
        <d3p1:FDeleteUserId>sample string 14</d3p1:FDeleteUserId>
        <d3p1:FDescription>sample string 11</d3p1:FDescription>
        <d3p1:FEnabledMark>true</d3p1:FEnabledMark>
        <d3p1:FId>sample string 1</d3p1:FId>
        <d3p1:FLastModifyTime>2026-02-04T21:52:14.4828412+08:00</d3p1:FLastModifyTime>
        <d3p1:FLastModifyUserId>sample string 13</d3p1:FLastModifyUserId>
        <d3p1:FSendStatus>待发货</d3p1:FSendStatus>
        <d3p1:FWZAddressDetail>sample string 27</d3p1:FWZAddressDetail>
        <d3p1:FWZFContactName>sample string 25</d3p1:FWZFContactName>
        <d3p1:FWZName>sample string 23</d3p1:FWZName>
        <d3p1:FWZNumber>sample string 24</d3p1:FWZNumber>
        <d3p1:FWZPhone>sample string 26</d3p1:FWZPhone>
        <d3p1:FWZ_FId>sample string 21</d3p1:FWZ_FId>
        <d3p1:JXSName>sample string 28</d3p1:JXSName>
        <d3p1:JXSNumber>sample string 29</d3p1:JXSNumber>
        <d3p1:PJFNumber>sample string 3</d3p1:PJFNumber>
        <d3p1:PJModel>sample string 19</d3p1:PJModel>
        <d3p1:PJName>sample string 18</d3p1:PJName>
        <d3p1:ReceiveTime>2026-02-04T21:52:14.4828412+08:00</d3p1:ReceiveTime>
        <d3p1:SendCount>7</d3p1:SendCount>
        <d3p1:SendFId>sample string 5</d3p1:SendFId>
        <d3p1:SendSource>4</d3p1:SendSource>
        <d3p1:SendTime>2026-02-04T21:52:14.4828412+08:00</d3p1:SendTime>
        <d3p1:TransferCount>6</d3p1:TransferCount>
        <d3p1:UnitPrice>20</d3p1:UnitPrice>
      </d3p1:ApplySendDetailsViewModel>
    </d2p1:ModelList>
    <d2p1:PageIndex>2</d2p1:PageIndex>
    <d2p1:PageSize>3</d2p1:PageSize>
    <d2p1:Total>1</d2p1:Total>
  </data>
  <msg>sample string 2</msg>
</JMResponseOfViewPageModelOfApplySendDetailsViewModel9SGuD_SZmrIMl6kOh>