GET dz_api/Customer/GetCustCountInfo

获取客户统计信息(App专用)

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

获取客户统计信息(App专用)

Collection of CustStatisticsInfo
NameDescriptionTypeAdditional information
Month

月份

integer

None.

CustType

客户类型

TaxTypeEnums

None.

CustCount

当月客户数量

integer

None.

AddCount

新增数量

integer

None.

LossCount

流失数量

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Month": 1,
    "CustType": 1010,
    "CustCount": 2,
    "AddCount": 3,
    "LossCount": 4
  },
  {
    "Month": 1,
    "CustType": 1010,
    "CustCount": 2,
    "AddCount": 3,
    "LossCount": 4
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustStatisticsInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model.Customer">
  <CustStatisticsInfo>
    <AddCount>3</AddCount>
    <CustCount>2</CustCount>
    <CustType>GeneralTaxpayer</CustType>
    <LossCount>4</LossCount>
    <Month>1</Month>
  </CustStatisticsInfo>
  <CustStatisticsInfo>
    <AddCount>3</AddCount>
    <CustCount>2</CustCount>
    <CustType>GeneralTaxpayer</CustType>
    <LossCount>4</LossCount>
    <Month>1</Month>
  </CustStatisticsInfo>
</ArrayOfCustStatisticsInfo>