新闻管理接口
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>易安卓后台新闻管理接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://10.1.2.14:8090/superUser/getNews</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<h5>参数</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th>必填</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">pageNum</td>
<td>是</td>
<td>int</td>
<td>页数</td>
</tr>
<tr>
<td style="text-align: left;">pageCount</td>
<td>是</td>
<td>int</td>
<td>总页数</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code> {
&quot;res&quot;: true,
&quot;message&quot;: &quot;[{\&quot;id\&quot;:3354,\&quot;title\&quot;:\&quot;12\&quot;,\&quot;smallImage\&quot;:\&quot;upload/news/images/701f1e5b-eccf-47ac-993c-deae77d1c883.jpg\&quot;,\&quot;date\&quot;:\&quot;2023年03月16日 21:25:11\&quot;,\&quot;introduce\&quot;:\&quot;qwqwqw\&quot;},{\&quot;id\&quot;:3254,\&quot;title\&quot;:\&quot;23\&quot;,\&quot;smallImage\&quot;:\&quot;upload/news/images/5a1811c8-415b-4b32-b668-d5829845aea5.jpg\&quot;,\&quot;date\&quot;:\&quot;2023年03月15日 19:18:38\&quot;,\&quot;introduce\&quot;:\&quot;345134\&quot;},{\&quot;id\&quot;:3172,\&quot;title\&quot;:\&quot;\&quot;,\&quot;smallImage\&quot;:\&quot;upload/news/images/dc90bb33-691f-42f9-b36e-14654542408c.jpg\&quot;,\&quot;date\&quot;:\&quot;2023年03月15日 15:00:50\&quot;,\&quot;introduce\&quot;:\&quot;\&quot;},{\&quot;id\&quot;:3171,\&quot;title\&quot;:\&quot;\&quot;,\&quot;smallImage\&quot;:\&quot;upload/news/images/6a2c9b9f-b17b-40d7-91f3-7757e1b18280.jpg\&quot;,\&quot;date\&quot;:\&quot;2023年03月15日 15:00:49\&quot;,\&quot;introduce\&quot;:\&quot;\&quot;},{\&quot;id\&quot;:3170,\&quot;title\&quot;:\&quot;\&quot;,\&quot;smallImage\&quot;:\&quot;upload/news/images/387b95a7-91f0-49b6-9e0a-7b9ed8824a5d.jpg\&quot;,\&quot;date\&quot;:\&quot;2023年03月15日 15:00:46\&quot;,\&quot;introduce\&quot;:\&quot;\&quot;}]&quot;
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">res</td>
<td style="text-align: left;">string</td>
<td>返回状态,true:成功;false:失败</td>
</tr>
<tr>
<td style="text-align: left;">message</td>
<td style="text-align: left;">string</td>
<td>返回新闻信息 标题,项目简介,图片,内容</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>