POST dz_api/LineCust/SearchLemonCust

从记账数据库搜索客户信息

Request Information

URI Parameters

None.

Body Parameters

SearchLineCustConditions
NameDescriptionTypeAdditional information
ProId

integer

None.

CityId

城市

integer

None.

AreaId

地区

integer

None.

RegDateStart

注册时间起

date

None.

RegDateEnd

注册时间至

date

None.

RegCapital

注册资本 1010:不限,1020:100万以下,1030:100-500万元 1040:500-1000万元,1050:1000万元以上

integer

None.

PageIndex

页码(从0开始)

integer

None.

PageSize

页面大小

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ProId": 1,
  "CityId": 2,
  "AreaId": 3,
  "RegDateStart": "2025-04-10T06:47:17.8149458+08:00",
  "RegDateEnd": "2025-04-10T06:47:17.8149458+08:00",
  "RegCapital": 4,
  "PageIndex": 5,
  "PageSize": 6
}

application/xml, text/xml

Sample:
<SearchLineCustConditions xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model.CRM.Clue">
  <AreaId>3</AreaId>
  <CityId>2</CityId>
  <PageIndex>5</PageIndex>
  <PageSize>6</PageSize>
  <ProId>1</ProId>
  <RegCapital>4</RegCapital>
  <RegDateEnd>2025-04-10T06:47:17.8149458+08:00</RegDateEnd>
  <RegDateStart>2025-04-10T06:47:17.8149458+08:00</RegDateStart>
</SearchLineCustConditions>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

从记账数据库搜索客户信息

PagedListOfLemonCustListModel
NameDescriptionTypeAdditional information
Items

Collection of LemonCustListModel

None.

Total

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Items": [
    {
      "CompanyName": "sample string 1",
      "LegalPerson": "sample string 2",
      "LicenseNo": "sample string 3",
      "RegCapital": "sample string 4",
      "FoundDate": "sample string 5",
      "GetTime": "sample string 6"
    },
    {
      "CompanyName": "sample string 1",
      "LegalPerson": "sample string 2",
      "LicenseNo": "sample string 3",
      "RegCapital": "sample string 4",
      "FoundDate": "sample string 5",
      "GetTime": "sample string 6"
    }
  ],
  "Total": 1
}

application/xml, text/xml

Sample:
<PagedListOfLemonCustListModelyy02hPDa xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model">
  <Items xmlns:d2p1="http://schemas.datacontract.org/2004/07/LemonAa.WebApi.Areas.CRM.Models">
    <d2p1:LemonCustListModel>
      <d2p1:CompanyName>sample string 1</d2p1:CompanyName>
      <d2p1:FoundDate>sample string 5</d2p1:FoundDate>
      <d2p1:GetTime>sample string 6</d2p1:GetTime>
      <d2p1:LegalPerson>sample string 2</d2p1:LegalPerson>
      <d2p1:LicenseNo>sample string 3</d2p1:LicenseNo>
      <d2p1:RegCapital>sample string 4</d2p1:RegCapital>
    </d2p1:LemonCustListModel>
    <d2p1:LemonCustListModel>
      <d2p1:CompanyName>sample string 1</d2p1:CompanyName>
      <d2p1:FoundDate>sample string 5</d2p1:FoundDate>
      <d2p1:GetTime>sample string 6</d2p1:GetTime>
      <d2p1:LegalPerson>sample string 2</d2p1:LegalPerson>
      <d2p1:LicenseNo>sample string 3</d2p1:LicenseNo>
      <d2p1:RegCapital>sample string 4</d2p1:RegCapital>
    </d2p1:LemonCustListModel>
  </Items>
  <Total>1</Total>
</PagedListOfLemonCustListModelyy02hPDa>