POST dz_api/ICService/Search

工商服务-查询工商服务

Request Information

URI Parameters

None.

Body Parameters

IcSearchPara
NameDescriptionTypeAdditional information
CustName

客户名称

string

None.

Status

服务状态(搜索全部请传0)

ServiceStatusEnums

None.

ServiceType

服务类型

integer

None.

UserTaxType

纳税性质(搜索全部请传0)

TaxTypeEnums

None.

Progress

服务进度(搜索全部请传0)

ServiceProgressEnums

None.

PageIndex

页码

integer

None.

PageSize

每页记录数

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CustName": "sample string 1",
  "Status": 1010,
  "ServiceType": 2,
  "UserTaxType": 1010,
  "Progress": 1010,
  "PageIndex": 3,
  "PageSize": 4
}

application/xml, text/xml

Sample:
<IcSearchPara xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.WebApi.Areas.IndustryAndCommerce.Models.App">
  <CustName>sample string 1</CustName>
  <PageIndex>3</PageIndex>
  <PageSize>4</PageSize>
  <Progress>Inprogress</Progress>
  <ServiceType>2</ServiceType>
  <Status>Inprogress</Status>
  <UserTaxType>GeneralTaxpayer</UserTaxType>
</IcSearchPara>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

工商服务-查询工商服务

SearchedListOfIcSearchResult
NameDescriptionTypeAdditional information
Total

integer

None.

Items

Collection of IcSearchResult

None.

SumModel

IcSearchResult

None.

Response Formats

application/json, text/json

Sample:
{
  "Total": 1,
  "Items": [
    {
      "ServiceId": 1,
      "CustId": 2,
      "CustName": "sample string 3",
      "ServiceTypeName": "sample string 4",
      "CustTaxTypeName": "sample string 5",
      "Progress": 6
    },
    {
      "ServiceId": 1,
      "CustId": 2,
      "CustName": "sample string 3",
      "ServiceTypeName": "sample string 4",
      "CustTaxTypeName": "sample string 5",
      "Progress": 6
    }
  ],
  "SumModel": {
    "ServiceId": 1,
    "CustId": 2,
    "CustName": "sample string 3",
    "ServiceTypeName": "sample string 4",
    "CustTaxTypeName": "sample string 5",
    "Progress": 6
  }
}

application/xml, text/xml

Sample:
<SearchedListOfIcSearchResultDpg1hnFL 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.IndustryAndCommerce.Models.App">
    <d2p1:IcSearchResult>
      <d2p1:CustId>2</d2p1:CustId>
      <d2p1:CustName>sample string 3</d2p1:CustName>
      <d2p1:CustTaxTypeName>sample string 5</d2p1:CustTaxTypeName>
      <d2p1:Progress>6</d2p1:Progress>
      <d2p1:ServiceId>1</d2p1:ServiceId>
      <d2p1:ServiceTypeName>sample string 4</d2p1:ServiceTypeName>
    </d2p1:IcSearchResult>
    <d2p1:IcSearchResult>
      <d2p1:CustId>2</d2p1:CustId>
      <d2p1:CustName>sample string 3</d2p1:CustName>
      <d2p1:CustTaxTypeName>sample string 5</d2p1:CustTaxTypeName>
      <d2p1:Progress>6</d2p1:Progress>
      <d2p1:ServiceId>1</d2p1:ServiceId>
      <d2p1:ServiceTypeName>sample string 4</d2p1:ServiceTypeName>
    </d2p1:IcSearchResult>
  </Items>
  <SumModel xmlns:d2p1="http://schemas.datacontract.org/2004/07/LemonAa.WebApi.Areas.IndustryAndCommerce.Models.App">
    <d2p1:CustId>2</d2p1:CustId>
    <d2p1:CustName>sample string 3</d2p1:CustName>
    <d2p1:CustTaxTypeName>sample string 5</d2p1:CustTaxTypeName>
    <d2p1:Progress>6</d2p1:Progress>
    <d2p1:ServiceId>1</d2p1:ServiceId>
    <d2p1:ServiceTypeName>sample string 4</d2p1:ServiceTypeName>
  </SumModel>
  <Total>1</Total>
</SearchedListOfIcSearchResultDpg1hnFL>