POST api/testpaper/saveterm

保存学期

Request Information

URI Parameters

None.

Body Parameters

SchoolTerm
NameDescriptionTypeAdditional information
Id

主键ID

integer

None.

TermName

学期名称

string

Max length: 100

IsAllowSpan

允许学生跨校区考试

boolean

None.

IntervalHour

学生两校区考试至少间隔小时数

decimal number

None.

CreatedTime

创建时间

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "TermName": "sample string 2",
  "IsAllowSpan": true,
  "IntervalHour": 4.0,
  "CreatedTime": "2024-09-25T00:08:22.4997475+08:00"
}

text/html

Sample:
{"Id":1,"TermName":"sample string 2","IsAllowSpan":true,"IntervalHour":4.0,"CreatedTime":"2024-09-25T00:08:22.4997475+08:00"}

application/xml, text/xml

Sample:
<SchoolTerm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Data">
  <CreatedTime>2024-09-25T00:08:22.4997475+08:00</CreatedTime>
  <Id>1</Id>
  <IntervalHour>4</IntervalHour>
  <IsAllowSpan>true</IsAllowSpan>
  <TermName>sample string 2</TermName>
</SchoolTerm>

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