POST api/ArchiveTable/UpdateArchiveTable?archiveTableTaskId={archiveTableTaskId}

更新任务表

Request Information

URI Parameters

NameDescriptionTypeAdditional information
archiveTableTaskId

globally unique identifier

Required

Body Parameters

ArchiveTableEditInput
NameDescriptionTypeAdditional information
DirectoryId

目录编号

globally unique identifier

None.

TableName

任务名称

string

None.

CourseTypeName

课程种类名称

string

None.

CourseCategory

课程类别

string

None.

Request Formats

application/json, text/json

Sample:
{
  "DirectoryId": "4530974e-dd01-4eef-888e-b1b6dafc3ea7",
  "TableName": "sample string 2",
  "CourseTypeName": "sample string 3",
  "CourseCategory": "sample string 4"
}

text/html

Sample:
{"DirectoryId":"4530974e-dd01-4eef-888e-b1b6dafc3ea7","TableName":"sample string 2","CourseTypeName":"sample string 3","CourseCategory":"sample string 4"}

application/xml, text/xml

Sample:
<ArchiveTableEditInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <CourseCategory>sample string 4</CourseCategory>
  <CourseTypeName>sample string 3</CourseTypeName>
  <DirectoryId>4530974e-dd01-4eef-888e-b1b6dafc3ea7</DirectoryId>
  <TableName>sample string 2</TableName>
</ArchiveTableEditInput>

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