GET dz_api/BossH5/GetTaxInfo?custId={custId}&period={period}

查询纳税情况

Request Information

URI Parameters

NameDescriptionTypeAdditional information
custId

integer

Required

period

string

Required

Body Parameters

None.

Response Information

Resource Description

查询纳税情况

TaxRecordMonthlyInfo
NameDescriptionTypeAdditional information
CustId

客户ID

integer

None.

Month

月份

integer

None.

Period

报税期间

string

None.

TotalAmount

税费总额

decimal number

None.

Status

-1:无,0:待申报,1:部分申报,2:已申报

integer

None.

Items

Collection of TaxRecordInfo

None.

Response Formats

application/json, text/json

Sample:
{
  "CustId": 1,
  "Month": 2,
  "Period": "sample string 3",
  "TotalAmount": 4.0,
  "Status": 0,
  "Items": [
    {
      "AaId": 1,
      "CustId": 2,
      "TaxTypeId": 3,
      "TaxTypeName": "sample string 4",
      "Period": "2024-04-28T12:38:32.1046193+08:00",
      "PushOnOrOff": true,
      "TaxAmount": 7.0,
      "Status": 8,
      "Note": "sample string 9",
      "CreatedBy": 10,
      "CreatedDate": "2024-04-28T12:38:32.1046193+08:00",
      "ModifiedBy": 12,
      "ModifiedDate": "2024-04-28T12:38:32.1046193+08:00"
    },
    {
      "AaId": 1,
      "CustId": 2,
      "TaxTypeId": 3,
      "TaxTypeName": "sample string 4",
      "Period": "2024-04-28T12:38:32.1046193+08:00",
      "PushOnOrOff": true,
      "TaxAmount": 7.0,
      "Status": 8,
      "Note": "sample string 9",
      "CreatedBy": 10,
      "CreatedDate": "2024-04-28T12:38:32.1046193+08:00",
      "ModifiedBy": 12,
      "ModifiedDate": "2024-04-28T12:38:32.1046193+08:00"
    }
  ]
}

application/xml, text/xml

Sample:
<TaxRecordMonthlyInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model.Aa">
  <CustId>1</CustId>
  <Items>
    <TaxRecordInfo>
      <AaId>1</AaId>
      <CreatedBy>10</CreatedBy>
      <CreatedDate>2024-04-28T12:38:32.1046193+08:00</CreatedDate>
      <CustId>2</CustId>
      <ModifiedBy>12</ModifiedBy>
      <ModifiedDate>2024-04-28T12:38:32.1046193+08:00</ModifiedDate>
      <Note>sample string 9</Note>
      <Period>2024-04-28T12:38:32.1046193+08:00</Period>
      <PushOnOrOff>true</PushOnOrOff>
      <Status>8</Status>
      <TaxAmount>7</TaxAmount>
      <TaxTypeId>3</TaxTypeId>
      <TaxTypeName>sample string 4</TaxTypeName>
    </TaxRecordInfo>
    <TaxRecordInfo>
      <AaId>1</AaId>
      <CreatedBy>10</CreatedBy>
      <CreatedDate>2024-04-28T12:38:32.1046193+08:00</CreatedDate>
      <CustId>2</CustId>
      <ModifiedBy>12</ModifiedBy>
      <ModifiedDate>2024-04-28T12:38:32.1046193+08:00</ModifiedDate>
      <Note>sample string 9</Note>
      <Period>2024-04-28T12:38:32.1046193+08:00</Period>
      <PushOnOrOff>true</PushOnOrOff>
      <Status>8</Status>
      <TaxAmount>7</TaxAmount>
      <TaxTypeId>3</TaxTypeId>
      <TaxTypeName>sample string 4</TaxTypeName>
    </TaxRecordInfo>
  </Items>
  <Month>2</Month>
  <Period>sample string 3</Period>
  <TotalAmount>4</TotalAmount>
</TaxRecordMonthlyInfo>