GET api/MallOrder/StatisticOrderAmount

后台 - 获取后台金额数字统计结果

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

后台 - 获取后台金额数字统计结果

OrderAdminStatisticAmountDto
NameDescriptionTypeAdditional information
TotalAmount

总成交金额(元)

decimal number

None.

TodayAmount

今日成交金额(元)

decimal number

None.

MonthlyAmount

本月成交金额(元)

decimal number

None.

TotalOrderNum

总订单数

integer

None.

TodayOrderNum

今日订单数

integer

None.

MonthlyOrderNum

本月订单数

integer

None.

Response Formats

application/json

Sample:

Sample not available.

text/json

Sample:

Sample not available.

application/xml, text/xml

Sample:
<OrderAdminStatisticAmountDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mh.Mall.Service.Dto.Order.Admin">
  <MonthlyAmount>3.1</MonthlyAmount>
  <MonthlyOrderNum>6</MonthlyOrderNum>
  <TodayAmount>2.1</TodayAmount>
  <TodayOrderNum>5</TodayOrderNum>
  <TotalAmount>1.1</TotalAmount>
  <TotalOrderNum>4</TotalOrderNum>
</OrderAdminStatisticAmountDto>