POST manage/exhibition
添加展项
Request Information
URI Parameters
None.
Body Parameters
ExhibitionModel| Name | Description | Type | Additional information |
|---|---|---|---|
| AreaID | integer |
None. |
|
| ExhibitionName | string |
None. |
|
| BGPic |
背景图 |
string |
None. |
| ExhibitionID |
展项ID 修改时必要 |
integer |
None. |
| CateServiceID |
服务分类ID |
integer |
None. |
| OrderBy |
排序,越大越靠前 |
integer |
None. |
| Warning |
警告提示信息 |
string |
None. |
| IndexShow |
展项是否在首页显示 |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"AreaID": 1,
"ExhibitionName": "sample string 2",
"BGPic": "sample string 3",
"ExhibitionID": 4,
"CateServiceID": 5,
"OrderBy": 6,
"Warning": "sample string 7",
"IndexShow": 8
}
application/xml, text/xml
Sample:
<ExhibitionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AIVenueAPI.Models"> <AreaID>1</AreaID> <BGPic>sample string 3</BGPic> <CateServiceID>5</CateServiceID> <ExhibitionID>4</ExhibitionID> <ExhibitionName>sample string 2</ExhibitionName> <IndexShow>8</IndexShow> <OrderBy>6</OrderBy> <Warning>sample string 7</Warning> </ExhibitionModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.