POST dz_api/ReceiptList/Export

导出收款监控表

Request Information

URI Parameters

None.

Body Parameters

ReceiptSearchConditions
NameDescriptionTypeAdditional information
Keyword

关键字(针对客户名称)

string

None.

ServiceType

服务类型

integer

None.

RecIds

记录ID(此项通过间接获取)

Collection of integer

None.

SelectRecIds

记录ID(此项在前端页面勾选,优先级最高)

Collection of integer

None.

DateStart

收款日期起

date

None.

DateEnd

收款日期至

date

None.

CustId

客户ID

integer

None.

Receipter

收款人

integer

None.

RecAccId

收款账户

integer

None.

Approved

审核状态 -1,全部。0,未审核,1,已审核

integer

None.

PageSize

页面大小

integer

None.

PageIndex

页码

integer

None.

IsSupperAdmin

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Keyword": "sample string 1",
  "ServiceType": 2,
  "RecIds": [
    1,
    2
  ],
  "SelectRecIds": [
    1,
    2
  ],
  "DateStart": "2024-04-28T20:07:07.3645835+08:00",
  "DateEnd": "2024-04-28T20:07:07.3645835+08:00",
  "CustId": 3,
  "Receipter": 4,
  "RecAccId": 5,
  "Approved": 6,
  "PageSize": 7,
  "PageIndex": 8,
  "IsSupperAdmin": true
}

application/xml, text/xml

Sample:
<ReceiptSearchConditions xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model.Receipt">
  <Approved>6</Approved>
  <CustId>3</CustId>
  <DateEnd>2024-04-28T20:07:07.3645835+08:00</DateEnd>
  <DateStart>2024-04-28T20:07:07.3645835+08:00</DateStart>
  <IsSupperAdmin>true</IsSupperAdmin>
  <Keyword>sample string 1</Keyword>
  <PageIndex>8</PageIndex>
  <PageSize>7</PageSize>
  <RecAccId>5</RecAccId>
  <RecIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </RecIds>
  <Receipter>4</Receipter>
  <SelectRecIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </SelectRecIds>
  <ServiceType>2</ServiceType>
</ReceiptSearchConditions>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

导出收款监控表

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.