GET api/MallOrder/StatisticOrderStatus

后台 - 获取后台状态数量统计结果

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

后台 - 获取后台状态数量统计结果

OrderAdminStatisticStatusDto
NameDescriptionTypeAdditional information
All

全部数量

integer

None.

UnPaidNum

未支付数量

integer

None.

PaidButNoUseNum

已支付,待使用数量

integer

None.

UsedDirectlyNum

已核销数量

integer

None.

PaidButUnSentNum

已支付,待发货数量

integer

None.

SentNum

已发货数量

integer

None.

RecievedNum

已收货数量

integer

None.

UnPaidForExpiredNum

支付超时数量

integer

None.

AskForRefundNum

申请退款数量

integer

None.

RefundedNum

已退款数量

integer

None.

Response Formats

application/json

Sample:

Sample not available.

text/json

Sample:

Sample not available.

application/xml, text/xml

Sample:
<OrderAdminStatisticStatusDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mh.Mall.Service.Dto.Order.Admin">
  <AskForRefundNum>8</AskForRefundNum>
  <PaidButNoUseNum>2</PaidButNoUseNum>
  <PaidButUnSentNum>4</PaidButUnSentNum>
  <RecievedNum>6</RecievedNum>
  <RefundedNum>9</RefundedNum>
  <SentNum>5</SentNum>
  <UnPaidForExpiredNum>7</UnPaidForExpiredNum>
  <UnPaidNum>1</UnPaidNum>
  <UsedDirectlyNum>3</UsedDirectlyNum>
</OrderAdminStatisticStatusDto>