24小时气温排行
<h2>24小时气温排行</h2>
<p><strong>接口地址</strong>:<code>http://10.165.3.168:8500/smart-weather/bigscreen/rain/rainTopWindByTime</code></p>
<p><strong>请求方式</strong>:<code>GET</code></p>
<p><strong>请求数据类型</strong>:<code>*</code></p>
<p><strong>响应数据类型</strong>:<code>*/*</code></p>
<p><strong>接口描述</strong>:24小时温度top接口</p>
<p><strong>请求参数</strong>:</p>
<p><strong>请求参数</strong>:</p>
<table>
<thead>
<tr>
<th>参数名称</th>
<th>参数说明</th>
<th>in</th>
<th>是否必须</th>
<th>数据类型</th>
<th>schema</th>
</tr>
</thead>
<tbody>
<tr>
<td>stationType 站点类型 全部不传值 0:标准气象站 1:微型气象站 2:微型气象站二期</td>
<td>stationType</td>
<td>query</td>
<td>false</td>
<td>integer(int32)</td>
</tr>
<tr>
<td>streetName</td>
<td>streetName</td>
<td>query</td>
<td>false</td>
<td>string</td>
</tr>
</tbody>
</table>
<p><strong>响应状态</strong>:</p>
<table>
<thead>
<tr>
<th>状态码</th>
<th>说明</th>
<th>schema</th>
</tr>
</thead>
<tbody>
<tr>
<td>200</td>
<td>OK</td>
<td>接口返回对象«List«24小时TOP数据»»</td>
</tr>
<tr>
<td>401</td>
<td>Unauthorized</td>
</tr>
<tr>
<td>403</td>
<td>Forbidden</td>
</tr>
<tr>
<td>404</td>
<td>Not Found</td>
</tr>
</tbody>
</table>
<p><strong>响应参数</strong>:</p>
<table>
<thead>
<tr>
<th>参数名称</th>
<th>参数说明</th>
<th>类型</th>
<th>schema</th>
</tr>
</thead>
<tbody>
<tr>
<td>code</td>
<td>返回代码</td>
<td>integer(int32)</td>
<td>integer(int32)</td>
</tr>
<tr>
<td>message</td>
<td>返回处理消息</td>
<td>string</td>
</tr>
<tr>
<td>result</td>
<td>返回数据对象</td>
<td>array</td>
<td>24小时TOP数据</td>
</tr>
<tr>
<td>&emsp;&emsp;maxTemperature</td>
<td>最高温度</td>
<td>string</td>
</tr>
<tr>
<td>&emsp;&emsp;maxTemperatureTime</td>
<td>最高温度出现时间</td>
<td>string</td>
</tr>
<tr>
<td>&emsp;&emsp;minTemperature</td>
<td>最低温度</td>
<td>string</td>
</tr>
<tr>
<td>&emsp;&emsp;minTemperatureTime</td>
<td>最低温度出现时间</td>
<td>string</td>
</tr>
<tr>
<td>&emsp;&emsp;stationCode</td>
<td>站点编号</td>
<td>string</td>
</tr>
<tr>
<td>&emsp;&emsp;stationName</td>
<td>站点名称</td>
<td>string</td>
</tr>
<tr>
<td>&emsp;&emsp;stationType</td>
<td>气象站类型</td>
<td>string</td>
</tr>
<tr>
<td>&emsp;&emsp;stationTypeName</td>
<td>气象站类型名称</td>
<td>string</td>
</tr>
<tr>
<td>&emsp;&emsp;streetName</td>
<td>街镇名称</td>
<td>string</td>
</tr>
<tr>
<td>success</td>
<td>成功标志</td>
<td>boolean</td>
</tr>
<tr>
<td>timestamp</td>
<td>时间戳</td>
<td>integer(int64)</td>
<td>integer(int64)</td>
</tr>
</tbody>
</table>
<p><strong>响应示例</strong>:</p>
<pre><code class="language-javascript">{
&quot;code&quot;: 0,
&quot;message&quot;: &quot;&quot;,
&quot;result&quot;: [
{
&quot;maxTemperature&quot;: &quot;&quot;,
&quot;maxTemperatureTime&quot;: &quot;&quot;,
&quot;minTemperature&quot;: &quot;&quot;,
&quot;minTemperatureTime&quot;: &quot;&quot;,
&quot;stationCode&quot;: &quot;&quot;,
&quot;stationName&quot;: &quot;&quot;,
&quot;stationType&quot;: &quot;&quot;,
&quot;stationTypeName&quot;: &quot;&quot;,
&quot;streetName&quot;: &quot;&quot;
}
],
&quot;success&quot;: true,
&quot;timestamp&quot;: 0
}</code></pre>