POST dz_api/AaSys/Save

Request Information

URI Parameters

None.

Body Parameters

AaSysArgModel
NameDescriptionTypeAdditional information
AaId

代账公司ID

integer

None.

ContractApprove

合同是否需要审批 0关闭 ;1 开启

integer

None.

ReceiptApprove

收款是否需要审核 0关闭 ;1 开启

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "AaId": 1,
  "ContractApprove": 2,
  "ReceiptApprove": 3
}

application/xml, text/xml

Sample:
<AaSysArgModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.WebApi.Areas.Settings.Controllers">
  <AaId>1</AaId>
  <ContractApprove>2</ContractApprove>
  <ReceiptApprove>3</ReceiptApprove>
</AaSysArgModel>

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>