球队未来赛程
<p><strong>简要描述:</strong> </p>
<ul>
<li>球队未来赛程</li>
</ul>
<p><strong>请求URL:</strong>
-C端 <code>http://xx.com/api/publicinterface/interface/get-future-schedule</code>
-B端 <code>http://xx.com/api/store/store/get-future-schedule</code><br />
<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;">schedule_mid</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>赛程mid</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
&quot;code&quot;: 600,
&quot;msg&quot;: &quot;获取成功&quot;,
&quot;result&quot;: {
&quot;home_list&quot;: [ //主队列表
{
&quot;schedule_mid&quot;: &quot;628040&quot;, //赛程mid
&quot;league_code&quot;: “111”, //联赛code
&quot;league_name&quot;: &quot;中足杯&quot;, //联赛名
&quot;play_time&quot;: &quot;2017-07-19 18:00:00&quot;, //比赛时间
&quot;home_team_name&quot;: &quot;天津权健&quot;, //主队名称
&quot;home_team_mid&quot;: &quot;18583&quot;, //主队mid
&quot;visit_team_mid&quot;: &quot;10655&quot;, //客队mid
&quot;visit_team_name&quot;: &quot;上海上港&quot;, //客队名称
&quot;later_days&quot;: 35 //相隔几天
}
],
&quot;visit_list&quot;: [ //客队列表
{
&quot;schedule_mid&quot;: &quot;628044&quot;,
&quot;league_code&quot;: “111”,
&quot;league_name&quot;: &quot;中足杯&quot;,
&quot;play_time&quot;: &quot;2017-07-19 20:00:00&quot;,
&quot;home_team_name&quot;: &quot;广州富力&quot;,
&quot;home_team_mid&quot;: &quot;425&quot;,
&quot;visit_team_mid&quot;: &quot;6648&quot;,
&quot;visit_team_name&quot;: &quot;广州恒大&quot;,
&quot;later_days&quot;: 35
}
]
}
}</code></pre>
<p><strong>备注</strong> </p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>