POST api/ppadmin/saveppsysteminfo

保存实践教学系统设置

Request Information

URI Parameters

None.

Body Parameters

PPSystemInfo
NameDescriptionTypeAdditional information
Id

主键ID

string

Max length: 36

CompressEnable

是否启用压缩

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "sample string 1",
  "CompressEnable": true
}

text/html

Sample:
{"Id":"sample string 1","CompressEnable":true}

application/xml, text/xml

Sample:
<PPSystemInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Data">
  <CompressEnable>true</CompressEnable>
  <Id>sample string 1</Id>
</PPSystemInfo>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

保存实践教学系统设置

JsonRtnDtoOfBoolean
NameDescriptionTypeAdditional information
Msg

string

None.

State

RtnState

None.

Data

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Msg": "sample string 1",
  "State": 100,
  "Data": true
}

text/html

Sample:
{"Msg":"sample string 1","State":100,"Data":true}

application/xml, text/xml

Sample:
<JsonRtnDtoOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <Data>true</Data>
  <Msg>sample string 1</Msg>
  <State>Display</State>
</JsonRtnDtoOfboolean>

text/javascript, application/javascript, application/json-p

Sample:
/**/ typeof  === 'function' && ({"Msg":"sample string 1","State":100,"Data":true});