遥感影像分页列表查询
<h5>请求URL</h5>
<ul>
<li><code>/api/image/getPageList</code> </li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST</li>
</ul>
<h5>请求示例</h5>
<pre><code>{
&quot;currentPage&quot;: 1,
&quot;pageSize&quot;: 2,
&quot;data&quot;: {
&quot;year&quot;: &quot;2023&quot;, // 年份
&quot;description&quot;: &quot;用户&quot; // 描述
}
}</code></pre>
<h5>返回示例</h5>
<pre><code>{
&quot;data&quot;: {
&quot;endRow&quot;: 1,
&quot;hasNextPage&quot;: false,
&quot;hasPreviousPage&quot;: false,
&quot;isFirstPage&quot;: true,
&quot;isLastPage&quot;: true,
&quot;list&quot;: [
{
&quot;createTime&quot;: &quot;2024-06-07 11:32:26&quot;, // 创建时间
&quot;description&quot;: &quot;用户123&quot;, // 描述
&quot;id&quot;: &quot;1798920930362155009&quot;, // 主键
&quot;path&quot;: &quot;/2024/02/22/用户头像-aa5809fe-cd9a-461f-8a63-ea9971113177.png&quot;, // 图片路径
&quot;updateTime&quot;: &quot;2024-06-07 11:34:12&quot;, // 更新时间
&quot;year&quot;: &quot;2023&quot; // 年份
}
],
&quot;navigateFirstPage&quot;: 1,
&quot;navigateLastPage&quot;: 1,
&quot;navigatePages&quot;: 8,
&quot;navigatepageNums&quot;: [
1
],
&quot;nextPage&quot;: 0,
&quot;pageNum&quot;: 1,
&quot;pageSize&quot;: 2,
&quot;pages&quot;: 1,
&quot;prePage&quot;: 0,
&quot;size&quot;: 1,
&quot;startRow&quot;: 1,
&quot;total&quot;: 1
},
&quot;decryptFlag&quot;: false,
&quot;message&quot;: &quot;success&quot;,
&quot;status&quot;: 200
}</code></pre>