GET api/User/GetUserStatisticByDate?StatisticType={StatisticType}&StatisticStartTime={StatisticStartTime}&StatisticEndTime={StatisticEndTime}

后台-获取用户按天,月的统计

Request Information

URI Parameters

NameDescriptionTypeAdditional information
StatisticType

统计方式

DataStatisticType

None.

StatisticStartTime

统计起始时间,只有在自定义时才有作用

date

None.

StatisticEndTime

统计截止时间,只有在自定义时才有作用

date

None.

Body Parameters

None.

Response Information

Resource Description

后台-获取用户按天,月的统计

Collection of StatisticByDateTimeDto
NameDescriptionTypeAdditional information
CreateTime

数据被创建的日期

string

None.

Nums

某日增长数据量

integer

None.

NumsDivided100

某日增长数据量(除以100以后)

decimal number

None.

Response Formats

application/json

Sample:

Sample not available.

text/json

Sample:

Sample not available.

application/xml, text/xml

Sample:
<ArrayOfStatisticByDateTimeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mh.Common.Service.Dto.Common">
  <StatisticByDateTimeDto>
    <CreateTime>sample string 1</CreateTime>
    <Nums>2</Nums>
  </StatisticByDateTimeDto>
  <StatisticByDateTimeDto>
    <CreateTime>sample string 1</CreateTime>
    <Nums>2</Nums>
  </StatisticByDateTimeDto>
</ArrayOfStatisticByDateTimeDto>