POST api/contest/savecompetitiontype
保存竞赛类型
Request Information
URI Parameters
None.
Body Parameters
CompetitionTypeName | Description | Type | Additional information |
---|---|---|---|
TypeName |
类型名称 |
string |
Max length: 30 |
Id |
主键 |
globally unique identifier |
None. |
CreatedTime |
创建时间 |
date |
None. |
IsDeleted |
是否删除 |
boolean |
None. |
LastUpdatedTime |
最后更新时间 |
date |
None. |
Request Formats
application/json, text/json
Sample:
{ "TypeName": "sample string 1", "Id": "c50dc4de-974c-48b5-a911-505324e75ab8", "CreatedTime": "2024-09-25T00:08:30.9998048+08:00", "IsDeleted": true, "LastUpdatedTime": "2024-09-25T00:08:30.9998048+08:00" }
text/html
Sample:
{"TypeName":"sample string 1","Id":"c50dc4de-974c-48b5-a911-505324e75ab8","CreatedTime":"2024-09-25T00:08:30.9998048+08:00","IsDeleted":true,"LastUpdatedTime":"2024-09-25T00:08:30.9998048+08:00"}
application/xml, text/xml
Sample:
<CompetitionType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Data"> <CreatedTime>2024-09-25T00:08:30.9998048+08:00</CreatedTime> <Id>c50dc4de-974c-48b5-a911-505324e75ab8</Id> <IsDeleted>true</IsDeleted> <LastUpdatedTime>2024-09-25T00:08:30.9998048+08:00</LastUpdatedTime> <TypeName>sample string 1</TypeName> </CompetitionType>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
保存竞赛类型
JsonRtnDtoOfBooleanName | Description | Type | Additional 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});