POST api/CusApple/CusIntegralLis
积分明细表,调用时传入cfdMemberId顾客编号,dfdStartDate开始日期,dfdEndDate开始日期
Request Information
URI Parameters
None.
Body Parameters
CusIntegralParam| Name | Description | Type | Additional information |
|---|---|---|---|
| cfdMemberId |
会员编号 |
string |
None. |
| IsAction |
功能,0是分页,1导出,2是直接列表输出 |
integer |
None. |
| dfdStartDate |
开始时间 |
date |
None. |
| dfdEndDate |
结束时间 |
date |
None. |
| limit |
每页多少行(默认30) |
integer |
None. |
| page |
当前页(默认1) |
integer |
None. |
| Keyword |
关键字 |
string |
None. |
| SortField |
排序字段 |
string |
None. |
| SortOrder |
排序方式,升序:ascend;降序:descend" |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"cfdMemberId": "sample string 1",
"IsAction": 1,
"dfdStartDate": "2026-07-26 12:29:10",
"dfdEndDate": "2026-07-26 12:29:10",
"limit": 2,
"page": 3,
"Keyword": "sample string 4",
"SortField": "sample string 5",
"SortOrder": "sample string 6"
}
application/xml, text/xml
Sample:
<CusIntegralParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Langquan.WebCRM.Model.Param"> <Keyword>sample string 4</Keyword> <SortField>sample string 5</SortField> <SortOrder>sample string 6</SortOrder> <limit>2</limit> <page>3</page> <IsAction>1</IsAction> <cfdMemberId>sample string 1</cfdMemberId> <dfdEndDate>2026-07-26T12:29:10.935469+08:00</dfdEndDate> <dfdStartDate>2026-07-26T12:29:10.935469+08:00</dfdStartDate> </CusIntegralParam>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
积分明细表,调用时传入cfdMemberId顾客编号,dfdStartDate开始日期,dfdEndDate开始日期
ResultModelOfCusIntegralVM| Name | Description | Type | Additional information |
|---|---|---|---|
| code | integer |
None. |
|
| msg | string |
None. |
|
| data | CusIntegralVM |
None. |
|
| count | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": 1,
"msg": "sample string 2",
"data": {
"cfdFendianName": "sample string 1",
"cfdMemberName": "sample string 2",
"cfdIntegral": 3.0,
"dfdDateTime": "2026-07-26 12:29:10",
"cfdCardIntegral": 5.0,
"ifdListId": 6,
"cfdRemark": "sample string 7"
},
"count": 1
}
application/xml, text/xml
Sample:
<ResultModelOfCusIntegralVMAmV0npg7 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Langquan.WebCRM.WebApi.Models.Model">
<code>1</code>
<count>1</count>
<data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Langquan.WebCRM.Model.ViewModel">
<d2p1:cfdCardIntegral>5</d2p1:cfdCardIntegral>
<d2p1:cfdFendianName>sample string 1</d2p1:cfdFendianName>
<d2p1:cfdIntegral>3</d2p1:cfdIntegral>
<d2p1:cfdMemberName>sample string 2</d2p1:cfdMemberName>
<d2p1:cfdRemark>sample string 7</d2p1:cfdRemark>
<d2p1:dfdDateTime>2026-07-26T12:29:10.935469+08:00</d2p1:dfdDateTime>
<d2p1:ifdListId>6</d2p1:ifdListId>
</data>
<msg>sample string 2</msg>
</ResultModelOfCusIntegralVMAmV0npg7>