语音搜索
<p><strong>简要描述</strong>:</p>
<ul>
<li>语音搜索</li>
</ul>
<p><strong>请求URL:</strong>:</p>
<ul>
<li><a href="http://127.0.0.1:8081/api/speech/search">http://127.0.0.1:8081/api/speech/search</a></li>
</ul>
<p><strong>请求方式:</strong>:</p>
<ul>
<li>POST</li>
</ul>
<p><strong>Header</strong></p>
<pre><code></code></pre>
<p><strong>参数</strong>:</p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">keyword</td>
<td style="text-align: left;">是</td>
<td>String</td>
<td>识别的语音内容</td>
</tr>
<tr>
<td style="text-align: left;">type</td>
<td style="text-align: left;">否</td>
<td>Integer</td>
<td>搜索的类别:1, "商品" 2,"商铺" 3,"消费券" 4,"位置"</td>
</tr>
</tbody>
</table>
<p><strong>数量和类型</strong></p>
<pre><code>{
&quot;code&quot;: 200,
&quot;message&quot;: &quot;成功&quot;,
&quot;data&quot;: {
&quot;1&quot;: 42,---------map集合&lt;类型,数量&gt; 1商品 2商铺 3消费券 4位置&quot;
&quot;2&quot;: 1
}
}</code></pre>
<p><strong>返回具体列表信息</strong></p>
<pre><code>{
&quot;code&quot;: 200,
&quot;message&quot;: &quot;成功&quot;,
&quot;data&quot;: [
{
&quot;storeId&quot;: 1,---------------------商铺信息集合
&quot;storeName&quot;: &quot;测试商铺&quot;
}
]
}</code></pre>
<p><strong>备注</strong>:</p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>