篮球历史交锋数据写入
<p><strong>简要描述:</strong> </p>
<ul>
<li>历史交锋总计数据接入</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>http://xx.com/api/cron/lan-data/lan-history-count-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>{
"data": [
{
"schedule_mid": "17009", //赛程mid
"clash_nums": "8", //双方交锋次数
"win_nums":"3" // 赢
"lose_nums":"5" // 输
"home_team_rank": "14", //主队排名
"visit_team_rank": "13", //客队排名
"scale_3001_3": "53%", //胜投注比例
"scale_3001_0": "35%", //负投注比例
"scale_3002_3": "12%", //让分胜投注比例
"scale_3002_0": "21%", //让分负投注比例
"europe_odds_3": "1.32", //胜平均赔率
"europe_odds_0": "3.32" //负平均赔率
"visit_team_league":"NBA",// 客队排名所属联赛
"home_team_league": "NBA", // 主队排名所属联赛
}
]
}</code></pre>
<p><strong>返回示例</strong></p>
<pre><code> {
“code”:600,
"msg":"历史交锋总计处理成功",
"result":""
}</code></pre>
<p><strong>备注</strong> </p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>