篮球赛程单个字段更新
<p><strong>简要描述:</strong> </p>
<p>-赛程结果单个字段处理</p>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>http://xx.com/api/cron/lan-data/update-single</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;">schedule_mid</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>赛程mid</td>
</tr>
<tr>
<td style="text-align: left;">status</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>状态</td>
</tr>
</tbody>
</table>
<p><strong>参数示例:</strong> </p>
<pre><code>---例一 只改状态值
{&quot;data&quot;:[{
&quot;schedule_mid&quot;: &quot;90714&quot;,
&quot;status&quot;: &quot;3&quot;, // 0:未开赛 1:比赛中 2:比赛完结 3:取消 4:延迟 5:比赛结果不对 6:未出赛果
}]
}
---例二 延迟比赛重新开赛
{
&quot;data&quot;:[{
&quot;schedule_mid&quot;: &quot;90714&quot;, // 赛程MID
&quot;status&quot;:&quot;0&quot;,
&quot;start_time&quot;:&quot;2017-12-14 02:00:00&quot; // 比赛开始时间
&quot;endsale_time&quot;:&quot;2017-12-13 23:52:00&quot; // 停售时间
}]
}
</code></pre>
<p><strong>返回示例</strong></p>
<pre><code>{
&quot;code&quot;: 600,
&quot;msg&quot;: &quot;保存成功&quot;,
&quot;result&quot;: &quot;&quot;
}</code></pre>
<p><strong>备注</strong> </p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>