POST api/offline/DiscountsPay/GetCollectionMoneyList
线下订单统计的收款单(还款单)
Request Information
URI Parameters
None.
Body Parameters
OfflineOrderCountRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| StartTime |
开始时间 |
date |
None. |
| EndTime |
结束时间 |
date |
None. |
| CustomerId |
客户ID |
integer |
None. |
| Keyword |
订单号/客户姓名 |
string |
None. |
| PayWay |
【销售单使用】支付方式:微信,支付宝,银联,线下的一种 |
OrderPayWay |
None. |
| DPPayWay |
【还款单使用】支付方式:微信,支付宝,等 |
PayWay |
None. |
| BillingUserName |
开单员 |
string |
None. |
| PageIndex |
页面起始项的索引,如{PageIndex=0,PageSize=10}:取0~9项(前十项);{PageIndex=10,PageSize=10}:取10~19项 |
integer |
None. |
| PageSize |
获取数量 |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"StartTime": "2025-12-26T20:14:40.3094946+08:00",
"EndTime": "2025-12-26T20:14:40.3094946+08:00",
"CustomerId": 1,
"Keyword": "sample string 1",
"PayWay": 0,
"DPPayWay": 0,
"BillingUserName": "sample string 2",
"PageIndex": 3,
"PageSize": 4
}
application/xml, text/xml
Sample:
<OfflineOrderCountRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataModel.Exchange.Request"> <PageIndex>3</PageIndex> <PageSize>4</PageSize> <BillingUserName>sample string 2</BillingUserName> <CustomerId>1</CustomerId> <DPPayWay>WxPay</DPPayWay> <EndTime>2025-12-26T20:14:40.3094946+08:00</EndTime> <Keyword>sample string 1</Keyword> <PayWay>WxPay</PayWay> <StartTime>2025-12-26T20:14:40.3094946+08:00</StartTime> </OfflineOrderCountRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseCountPageOfListOfDiscountsPayMoneyResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| totalCount | integer |
None. |
|
| totalPrice | decimal number |
None. |
|
| isLastPage | boolean |
None. |
|
| totalItem | integer |
None. |
|
| data | Collection of DiscountsPayMoneyResponse |
None. |
|
| errcode |
错误码,默认为成功:SUCCESS |
string |
None. |
| errmsg |
错误信息,默认为:成功 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"totalCount": 1,
"totalPrice": 2.0,
"isLastPage": true,
"totalItem": 4,
"data": [
{
"Id": 1,
"OrderNo": "sample string 2",
"CustomerName": "sample string 3",
"CustomerPhone": "sample string 4",
"Money": 5.0,
"CustomerId": 6,
"CreateTIme": "2025-12-26T20:14:40.3094946+08:00",
"Number": 7,
"ShopId": 1,
"PayWay": 0,
"BillingUserName": "sample string 8"
},
{
"Id": 1,
"OrderNo": "sample string 2",
"CustomerName": "sample string 3",
"CustomerPhone": "sample string 4",
"Money": 5.0,
"CustomerId": 6,
"CreateTIme": "2025-12-26T20:14:40.3094946+08:00",
"Number": 7,
"ShopId": 1,
"PayWay": 0,
"BillingUserName": "sample string 8"
}
],
"errcode": "sample string 5",
"errmsg": "sample string 6"
}
application/xml, text/xml
Sample:
<ResponseCountPageOfArrayOfDiscountsPayMoneyResponseUJ8Augit xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Infrastructure.WebApi">
<errcode>sample string 5</errcode>
<errmsg>sample string 6</errmsg>
<data xmlns:d2p1="http://schemas.datacontract.org/2004/07/DataModel.Exchange.Response">
<d2p1:DiscountsPayMoneyResponse>
<d2p1:BillingUserName>sample string 8</d2p1:BillingUserName>
<d2p1:CreateTIme>2025-12-26T20:14:40.3094946+08:00</d2p1:CreateTIme>
<d2p1:CustomerId>6</d2p1:CustomerId>
<d2p1:CustomerName>sample string 3</d2p1:CustomerName>
<d2p1:CustomerPhone>sample string 4</d2p1:CustomerPhone>
<d2p1:Id>1</d2p1:Id>
<d2p1:Money>5</d2p1:Money>
<d2p1:Number>7</d2p1:Number>
<d2p1:OrderNo>sample string 2</d2p1:OrderNo>
<d2p1:PayWay>WxPay</d2p1:PayWay>
<d2p1:ShopId>1</d2p1:ShopId>
</d2p1:DiscountsPayMoneyResponse>
<d2p1:DiscountsPayMoneyResponse>
<d2p1:BillingUserName>sample string 8</d2p1:BillingUserName>
<d2p1:CreateTIme>2025-12-26T20:14:40.3094946+08:00</d2p1:CreateTIme>
<d2p1:CustomerId>6</d2p1:CustomerId>
<d2p1:CustomerName>sample string 3</d2p1:CustomerName>
<d2p1:CustomerPhone>sample string 4</d2p1:CustomerPhone>
<d2p1:Id>1</d2p1:Id>
<d2p1:Money>5</d2p1:Money>
<d2p1:Number>7</d2p1:Number>
<d2p1:OrderNo>sample string 2</d2p1:OrderNo>
<d2p1:PayWay>WxPay</d2p1:PayWay>
<d2p1:ShopId>1</d2p1:ShopId>
</d2p1:DiscountsPayMoneyResponse>
</data>
<isLastPage>true</isLastPage>
<totalItem>4</totalItem>
<totalCount>1</totalCount>
<totalPrice>2</totalPrice>
</ResponseCountPageOfArrayOfDiscountsPayMoneyResponseUJ8Augit>