POST dz_api/Tax/UpdateTaxStatus

代账服务-更新申报状态

Request Information

URI Parameters

None.

Body Parameters

TaxRecordInfo
NameDescriptionTypeAdditional information
AaId

AaId

integer

None.

CustId

客户ID

integer

None.

TaxTypeId

报税类型ID

integer

None.

TaxTypeName

报税类型ID

string

None.

Period

报税期间

date

None.

PushOnOrOff

boolean

None.

TaxAmount

税额

decimal number

None.

Status

申报状态

integer

None.

Note

备注

string

None.

CreatedBy

创建人

integer

None.

CreatedDate

创建日期

date

None.

ModifiedBy

修改人

integer

None.

ModifiedDate

修改日期

date

None.

Request Formats

application/json, text/json

Sample:
{
  "AaId": 1,
  "CustId": 2,
  "TaxTypeId": 3,
  "TaxTypeName": "sample string 4",
  "Period": "2024-04-20T21:21:38.3831097+08:00",
  "PushOnOrOff": true,
  "TaxAmount": 7.0,
  "Status": 8,
  "Note": "sample string 9",
  "CreatedBy": 10,
  "CreatedDate": "2024-04-20T21:21:38.3831097+08:00",
  "ModifiedBy": 12,
  "ModifiedDate": "2024-04-20T21:21:38.3831097+08:00"
}

application/xml, text/xml

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

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

代账服务-更新申报状态

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>