功能说明:新闻动态类型获取
请求方式:POST(HTTPS)
请求地址:https://qwif.do1.com.cn/qwcgi/api/news/getDynamicType.do?token=token&corpId=corpId
|
参数 |
说明 |
类型 |
是否必须 |
备注 |
|---|---|---|---|---|
|
token |
用于验证 |
String |
是 | |
|
corpId |
公司唯一标识 |
String |
是 |
NewsApi newApi = QwSdkUtil.getInter(NewsApi.class);
ApiNewsGetDynamicTypeResultVO resultVO = newApi.getDynamicTypeList(QwSdkUtil.getCacheToken());
System.out.println(JSONUtil.stringify(resultVO));
{
"code":"0",
"desc":"成功",
"data":{
"list":[
{
"id":"357d6d49a67040208eb91509b47a402a",
"isCommentReview":0,
"isOpen":1,
"type":1,
"typeName":"通知公告"
}
]
}
}
|
参数 |
说明 |
|---|---|
|
id |
类型id |
|
isCommentReview |
评论是否需要审核 0:否 1:是 |
|
isOpen |
0:类型禁用,1:类型开启 |
|
type |
排序号 |
|
typeName |
类型名称 |