GET api/OEUser/GetFeedbackTypeList?aid={aid}
获取投诉建议问题分类
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| aid |
用户ID |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of FeedbackType| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
类型ID |
integer |
None. |
| Name |
类型名称 |
string |
None. |
| flag |
是否选中 |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Name": "sample string 2",
"flag": true
},
{
"Id": 1,
"Name": "sample string 2",
"flag": true
}
]
application/xml, text/xml
Sample:
<ArrayOfFeedbackType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/open.wst.com.Areas.OnlineEducation.Models">
<FeedbackType>
<Id>1</Id>
<Name>sample string 2</Name>
<flag>true</flag>
</FeedbackType>
<FeedbackType>
<Id>1</Id>
<Name>sample string 2</Name>
<flag>true</flag>
</FeedbackType>
</ArrayOfFeedbackType>