球队数据接入
<p><strong>简要描述:</strong> </p>
<ul>
<li>球队数据接入</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>http://xx.com/api/cron/data/team-data</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST</li>
</ul>
<p><strong>参数:</strong> </p>
<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;">data</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">json</td>
<td>数据</td>
</tr>
</tbody>
</table>
<p><strong>参数示例:</strong> </p>
<pre><code>{
&quot;data&quot;:'[{
&quot;team_code&quot;:&quot;team_code&quot;,//球队mid
&quot;team_type&quot;:&quot;1&quot; // 球队类型 1:足球 2:篮球
&quot;team_position&quot;: &quot;东部&quot; // 篮球特有
&quot;team_short_name&quot;:&quot;team_short_name&quot;, //简称
&quot;team_long_name&quot;:&quot;team_long_name&quot;, //全称
&quot;country_name&quot;:&quot;country_name&quot;, //球队国家
&quot;team_img&quot;:&quot;team_img&quot;, //球队图片
&quot;team_remarks&quot;:&quot;team_remarks&quot;, //简介
&quot;league_code&quot;:&quot;LHWB&quot; //联赛mid
&quot;league_name&quot;:&quot;联赛名&quot; //联赛名
}]'
}</code></pre>
<p><strong>返回示例</strong></p>
<pre><code> {
“code”:600,
&quot;msg&quot;:&quot;球队数据处理成功&quot;,
&quot;data&quot;:&quot;&quot;
}</code></pre>
<p><strong>备注</strong> </p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>