POST dz_api/RecycleBin/RestoreAccountSetFromRecycleBin

从回收站恢复账套

Request Information

URI Parameters

None.

Body Parameters

AccountSetSimpleModel
NameDescriptionTypeAdditional information
AppAsId

string

None.

CustId

integer

None.

AccAsId

integer

None.

AccAsName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "AppAsId": "sample string 1",
  "CustId": 2,
  "AccAsId": 3,
  "AccAsName": "sample string 4"
}

application/xml, text/xml

Sample:
<AccountSetSimpleModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model.AccountSet">
  <AccAsId>3</AccAsId>
  <AccAsName>sample string 4</AccAsName>
  <AppAsId>sample string 1</AppAsId>
  <CustId>2</CustId>
</AccountSetSimpleModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

从回收站恢复账套

MessageModel
NameDescriptionTypeAdditional information
Success

boolean

None.

Msg

string

None.

Data

Object

None.

StatusCode

StatusCode

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Msg": "sample string 2",
  "Data": {},
  "StatusCode": 100
}

application/xml, text/xml

Sample:
<MessageModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model">
  <Data />
  <Msg>sample string 2</Msg>
  <StatusCode>CONTINUE</StatusCode>
  <Success>true</Success>
</MessageModel>