获取各个来源的预警和有火数
<h5>请求URL</h5>
<ul>
<li><code>/fire/getTypeWarningCount</code> </li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST</li>
</ul>
<h5>请求示例</h5>
<pre><code>{
&quot;startTime&quot;: &quot;2024-05-19 18:00:27&quot;, // 开始时间
&quot;endTime&quot;: &quot;2024-06-18 18:00:27&quot; // 结束时间
}</code></pre>
<h5>返回示例</h5>
<pre><code>{
&quot;data&quot;: {
&quot;warning&quot;: [ // 预警
{
&quot;human&quot;: 0, // 人工
&quot;satellite&quot;: 2, // 卫星
&quot;video&quot;: 1 // 视频
}
],
&quot;fire&quot;: [ // 有火
{
&quot;human&quot;: 0,
&quot;satellite&quot;: 0,
&quot;video&quot;: 0
}
]
},
&quot;decryptFlag&quot;: false,
&quot;message&quot;: &quot;success&quot;,
&quot;status&quot;: 200
}</code></pre>