GET api/Finance/GetOrderStatistic
后台 - 获取订单数据统计数字
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| PayStatus |
订单支付状态 |
PayState |
None. |
| ExcludePayStatus |
排除的订单支付状态 |
Collection of PayState |
None. |
| PayType |
订单支付方式 |
OrderPayType |
None. |
| Module |
模块类型 |
ModuleType |
None. |
| Type |
服务类型集合 |
ServiceType |
None. |
| MoreTypes |
更多的服务类型 |
Collection of ServiceType |
None. |
| OrderNoOrBuyerName |
订单号或下单人姓名 |
string |
None. |
| PayStartTime |
支付起始时间 |
date |
None. |
| PayEndTime |
支付截止时间 |
date |
None. |
| IsIgnoreCreditOrder |
是否忽略积分支付的订单(默认为忽略) |
boolean |
None. |
| BuyerUserId |
下单人用户标识 |
integer |
None. |
| IsOnlyPaid |
是否只筛选已支付订单 |
boolean |
None. |
| PageSize |
每页条数 |
integer |
None. |
| Search |
关键字 |
string |
None. |
| Keywords |
关键字 |
string |
None. |
| PageID |
分页页数 |
integer |
None. |
Body Parameters
None.
Response Information
Resource Description
后台 - 获取订单数据统计数字
FinOrderStatisticDto| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderCount |
已支付订单总数 |
integer |
None. |
| OrderAmount |
已支付订单金额 |
integer |
None. |
| OrderAmountYuan |
已支付订单金额(元) |
decimal number |
None. |
| RefundApplyCount |
申请退款订单总数 |
integer |
None. |
| RefundApplyAmount |
申请退款订单金额 |
integer |
None. |
| RefundApplyAmountYuan |
申请退款订单金额(元) |
decimal number |
None. |
| RefundCount |
退款订单总数 |
integer |
None. |
| RefundAmount |
退款订单金额 |
integer |
None. |
| RefundAmountYuan |
退款订单金额(元) |
decimal number |
None. |
Response Formats
application/json
Sample:
text/json
Sample:
application/xml, text/xml
Sample:
<FinOrderStatisticDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mh.Common.Service.Dto.Finance"> <OrderAmount>2</OrderAmount> <OrderCount>1</OrderCount> <RefundAmount>6</RefundAmount> <RefundApplyAmount>4</RefundApplyAmount> <RefundApplyCount>3</RefundApplyCount> <RefundCount>5</RefundCount> </FinOrderStatisticDto>