POST api/testpaper/saveexamplanplace

保存考务考场关联信息

Request Information

URI Parameters

None.

Body Parameters

ExamPlanPlaceDto
NameDescriptionTypeAdditional information
ExamPlanId

考务ID

globally unique identifier

None.

PlaceList

考场集合

Collection of integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ExamPlanId": "e0bc54c0-b4a2-4473-92c2-036ee2837aa8",
  "PlaceList": [
    1,
    2
  ]
}

text/html

Sample:
{"ExamPlanId":"e0bc54c0-b4a2-4473-92c2-036ee2837aa8","PlaceList":[1,2]}

application/xml, text/xml

Sample:
<ExamPlanPlaceDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <ExamPlanId>e0bc54c0-b4a2-4473-92c2-036ee2837aa8</ExamPlanId>
  <PlaceList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </PlaceList>
</ExamPlanPlaceDto>

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