POST api/boss/statisticsvender/detail

boss-基地销售排行-详情

Request Information

URI Parameters

None.

Body Parameters

ApiPageOfStatisticsVenderDetailRequestModel
NameDescriptionTypeAdditional information
data

StatisticsVenderDetailRequestModel

None.

PageIndex

页面起始项的索引,如{PageIndex=0,PageSize=10}:取0~9项(前十项);{PageIndex=10,PageSize=10}:取10~19项

integer

None.

PageSize

获取数量

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "data": {
    "ProductClassId": 1,
    "VenderId": 2,
    "BeginTime": "2025-12-26T20:18:07.8138249+08:00",
    "EndTime": "2025-12-26T20:18:07.8138249+08:00"
  },
  "PageIndex": 1,
  "PageSize": 2
}

application/xml, text/xml

Sample:
<ApiPageOfStatisticsVenderDetailRequestModelIoo5uFlX xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataModel.Exchange.Request">
  <PageIndex>1</PageIndex>
  <PageSize>2</PageSize>
  <data>
    <BeginTime>2025-12-26T20:18:07.8138249+08:00</BeginTime>
    <EndTime>2025-12-26T20:18:07.8138249+08:00</EndTime>
    <ProductClassId>1</ProductClassId>
    <VenderId>2</VenderId>
  </data>
</ApiPageOfStatisticsVenderDetailRequestModelIoo5uFlX>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponsePageOfStatisticsVenderDetailModel
NameDescriptionTypeAdditional information
isLastPage

boolean

None.

totalItem

integer

None.

data

StatisticsVenderDetailModel

None.

errcode

错误码,默认为成功:SUCCESS

string

None.

errmsg

错误信息,默认为:成功

string

None.

Response Formats

application/json, text/json

Sample:
{
  "isLastPage": true,
  "totalItem": 2,
  "data": {
    "ImgUrl": "sample string 1",
    "Name": "sample string 2",
    "Phone": "sample string 3",
    "TotalCount": 4,
    "Items": [
      {
        "ProductVarietyName": "sample string 1",
        "VenderName": "sample string 2",
        "ProductClassName": "sample string 3",
        "Count": 4
      },
      {
        "ProductVarietyName": "sample string 1",
        "VenderName": "sample string 2",
        "ProductClassName": "sample string 3",
        "Count": 4
      }
    ]
  },
  "errcode": "sample string 3",
  "errmsg": "sample string 4"
}

application/xml, text/xml

Sample:
<ResponsePageOfStatisticsVenderDetailModelUJ8Augit xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Infrastructure.WebApi">
  <errcode>sample string 3</errcode>
  <errmsg>sample string 4</errmsg>
  <data xmlns:d2p1="http://schemas.datacontract.org/2004/07/DataModel.Exchange.Response">
    <d2p1:ImgUrl>sample string 1</d2p1:ImgUrl>
    <d2p1:Items>
      <d2p1:StatisticsVenderDetailItemModel>
        <d2p1:Count>4</d2p1:Count>
        <d2p1:ProductClassName>sample string 3</d2p1:ProductClassName>
        <d2p1:ProductVarietyName>sample string 1</d2p1:ProductVarietyName>
        <d2p1:VenderName>sample string 2</d2p1:VenderName>
      </d2p1:StatisticsVenderDetailItemModel>
      <d2p1:StatisticsVenderDetailItemModel>
        <d2p1:Count>4</d2p1:Count>
        <d2p1:ProductClassName>sample string 3</d2p1:ProductClassName>
        <d2p1:ProductVarietyName>sample string 1</d2p1:ProductVarietyName>
        <d2p1:VenderName>sample string 2</d2p1:VenderName>
      </d2p1:StatisticsVenderDetailItemModel>
    </d2p1:Items>
    <d2p1:Name>sample string 2</d2p1:Name>
    <d2p1:Phone>sample string 3</d2p1:Phone>
    <d2p1:TotalCount>4</d2p1:TotalCount>
  </data>
  <isLastPage>true</isLastPage>
  <totalItem>2</totalItem>
</ResponsePageOfStatisticsVenderDetailModelUJ8Augit>