GET api/vender/stockingrequest/detail?id={id}
根据id获取基地获取约仓详情(已排除了被取消的品种)
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ResponseOfVSRDetailModel| Name | Description | Type | Additional information |
|---|---|---|---|
| data | VSRDetailModel |
None. |
|
| errcode |
错误码,默认为成功:SUCCESS |
string |
None. |
| errmsg |
错误信息,默认为:成功 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"data": {
"RequestNo": "sample string 1",
"StockTime": "2025-12-26T20:16:34.3193904+08:00",
"RequestTime": "2025-12-26T20:16:34.3193904+08:00",
"StoreManagerPhone": "sample string 4",
"StoreManagerName": "sample string 5",
"Address": "sample string 6",
"RepositoryName": "sample string 7",
"Items": [
{
"VarietyName": "sample string 1",
"ProductClassName": "sample string 2",
"Count": 3,
"Productstate": 0,
"ProductStateDis": "申请中"
},
{
"VarietyName": "sample string 1",
"ProductClassName": "sample string 2",
"Count": 3,
"Productstate": 0,
"ProductStateDis": "申请中"
}
]
},
"errcode": "sample string 1",
"errmsg": "sample string 2"
}
application/xml, text/xml
Sample:
<ResponseOfVSRDetailModelUJ8Augit xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Infrastructure.WebApi">
<errcode>sample string 1</errcode>
<errmsg>sample string 2</errmsg>
<data xmlns:d2p1="http://schemas.datacontract.org/2004/07/DataModel.Exchange.Response">
<d2p1:Address>sample string 6</d2p1:Address>
<d2p1:Items>
<d2p1:VSRDetailItemModel>
<d2p1:Count>3</d2p1:Count>
<d2p1:ProductClassName>sample string 2</d2p1:ProductClassName>
<d2p1:Productstate>Requested</d2p1:Productstate>
<d2p1:VarietyName>sample string 1</d2p1:VarietyName>
</d2p1:VSRDetailItemModel>
<d2p1:VSRDetailItemModel>
<d2p1:Count>3</d2p1:Count>
<d2p1:ProductClassName>sample string 2</d2p1:ProductClassName>
<d2p1:Productstate>Requested</d2p1:Productstate>
<d2p1:VarietyName>sample string 1</d2p1:VarietyName>
</d2p1:VSRDetailItemModel>
</d2p1:Items>
<d2p1:RepositoryName>sample string 7</d2p1:RepositoryName>
<d2p1:RequestNo>sample string 1</d2p1:RequestNo>
<d2p1:RequestTime>2025-12-26T20:16:34.3193904+08:00</d2p1:RequestTime>
<d2p1:StockTime>2025-12-26T20:16:34.3193904+08:00</d2p1:StockTime>
<d2p1:StoreManagerName>sample string 5</d2p1:StoreManagerName>
<d2p1:StoreManagerPhone>sample string 4</d2p1:StoreManagerPhone>
</data>
</ResponseOfVSRDetailModelUJ8Augit>