新闻接口
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>易安卓前端新闻接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://10.1.2.14:8090/news/getNewsByPage</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>string</td>
<td>页码</td>
</tr>
<tr>
<td style="text-align: left;">pageCount</td>
<td>是</td>
<td>string</td>
<td>总页数</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code> {
&quot;res&quot;: true,
&quot;message&quot;: &quot;[{\&quot;id\&quot;:2782,\&quot;title\&quot;:\&quot;雷锋精神\&quot;,\&quot;smallImage\&quot;:\&quot;upload/news/images/0502ac4c-06ce-4a01-92af-1b1bd2d2b9e2.jpg\&quot;,\&quot;date\&quot;:\&quot;2023年03月06日 22:19:02\&quot;,\&quot;introduce\&quot;:\&quot;音乐响起时全场沸腾\&quot;},{\&quot;id\&quot;:2661,\&quot;title\&quot;:\&quot;八旬老汉离奇失踪\&quot;,\&quot;smallImage\&quot;:\&quot;upload/news/images/503c8de1-034e-4b73-83b4-fc3564e8681f.jpg\&quot;,\&quot;date\&quot;:\&quot;2023年03月03日 19:03:16\&quot;,\&quot;introduce\&quot;:\&quot;八旬老汉离奇失踪,到底是道德的沦丧,还是社会的败坏,让我们走进今日说法.\&quot;}]&quot;
}
{
&quot;res&quot;: true,
&quot;message&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:成功</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>