POST api/coursetypes/save
保存课程分类
Request Information
URI Parameters
None.
Body Parameters
课程分类实体
CourseTypesName | Description | Type | Additional information |
---|---|---|---|
ID |
课程分类 |
integer |
None. |
CourseTypeName |
分类名称 |
string |
None. |
Path |
层级路径 |
string |
None. |
PID |
父级分类 |
integer |
None. |
CreatedTime |
创建时间 |
date |
None. |
Request Formats
application/json, text/json
Sample:
{ "ID": 1, "CourseTypeName": "sample string 2", "Path": "sample string 3", "PID": 4, "CreatedTime": "2024-09-25T00:07:37.4688938+08:00" }
text/html
Sample:
{"ID":1,"CourseTypeName":"sample string 2","Path":"sample string 3","PID":4,"CreatedTime":"2024-09-25T00:07:37.4688938+08:00"}
application/xml, text/xml
Sample:
<CourseTypes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Data"> <CourseTypeName>sample string 2</CourseTypeName> <CreatedTime>2024-09-25T00:07:37.4688938+08:00</CreatedTime> <ID>1</ID> <PID>4</PID> <Path>sample string 3</Path> </CourseTypes>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
保存课程分类
JsonRtnDtoOfCourseTypesName | Description | Type | Additional information |
---|---|---|---|
Msg | string |
None. |
|
State | RtnState |
None. |
|
Data | CourseTypes |
None. |
Response Formats
application/json, text/json
Sample:
{ "Msg": "sample string 1", "State": 100, "Data": { "ID": 1, "CourseTypeName": "sample string 2", "Path": "sample string 3", "PID": 4, "CreatedTime": "2024-09-25T00:07:37.4688938+08:00" } }
text/html
Sample:
{"Msg":"sample string 1","State":100,"Data":{"ID":1,"CourseTypeName":"sample string 2","Path":"sample string 3","PID":4,"CreatedTime":"2024-09-25T00:07:37.4688938+08:00"}}
application/xml, text/xml
Sample:
<JsonRtnDtoOfCourseTypesmEDjlcEG xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services"> <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/BJ.Data"> <d2p1:CourseTypeName>sample string 2</d2p1:CourseTypeName> <d2p1:CreatedTime>2024-09-25T00:07:37.4688938+08:00</d2p1:CreatedTime> <d2p1:ID>1</d2p1:ID> <d2p1:PID>4</d2p1:PID> <d2p1:Path>sample string 3</d2p1:Path> </Data> <Msg>sample string 1</Msg> <State>Display</State> </JsonRtnDtoOfCourseTypesmEDjlcEG>
text/javascript, application/javascript, application/json-p
Sample:
/**/ typeof === 'function' && ({"Msg":"sample string 1","State":100,"Data":{"ID":1,"CourseTypeName":"sample string 2","Path":"sample string 3","PID":4,"CreatedTime":"2024-09-25T00:07:37.4688938+08:00"}});