展览详情
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>展览详情接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://localhost:12345/api/show/detail/:id</code></li>
</ul>
<p>例如:<a href="http://localhost:12345/api/show/detail/3">http://localhost:12345/api/show/detail/3</a></p>
<h5>请求方式</h5>
<ul>
<li>GET </li>
</ul>
<h5>参数</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>展览id</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code>{
&quot;err_code&quot;: 0,
&quot;msg&quot;: &quot;获取展览详情成功!&quot;,
&quot;data&quot;: {
&quot;id&quot;: 3,
&quot;imgPath&quot;: &quot;https://picsum.photos/200/300?random=2&quot;,
&quot;showName&quot;: &quot;历史文物展&quot;,
&quot;showCity&quot;: &quot;广州&quot;,
&quot;showPrice&quot;: &quot;60元&quot;,
&quot;showDate&quot;: &quot;2024-12-20&quot;,
&quot;showDay&quot;: &quot;周五&quot;,
&quot;maxNum&quot;: 3,
&quot;showStartTime&quot;: &quot;09:30&quot;,
&quot;showEndTime&quot;: &quot;16:30&quot;,
&quot;showDetail&quot;: &quot;展出了一系列珍贵的历史文物,涵盖了各个朝代,为观众呈现了丰富的历史文化画卷,感受古人的智慧与生活。&quot;
}
}</code></pre>