POST api/app/saveschoolurl

保存学校链接信息

Request Information

URI Parameters

None.

Body Parameters

SchoolUrl
NameDescriptionTypeAdditional information
Id

主键ID

globally unique identifier

None.

SchoolName

学校名称

string

Max length: 100

Url

链接地址

string

Max length: 200

IsDeleted

是否已删除

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "e333ed53-0663-42b2-a9d4-7b895dd0d4f1",
  "SchoolName": "sample string 2",
  "Url": "sample string 3",
  "IsDeleted": true
}

text/html

Sample:
{"Id":"e333ed53-0663-42b2-a9d4-7b895dd0d4f1","SchoolName":"sample string 2","Url":"sample string 3","IsDeleted":true}

application/xml, text/xml

Sample:
<SchoolUrl xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Data">
  <Id>e333ed53-0663-42b2-a9d4-7b895dd0d4f1</Id>
  <IsDeleted>true</IsDeleted>
  <SchoolName>sample string 2</SchoolName>
  <Url>sample string 3</Url>
</SchoolUrl>

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});