获取赛事阵容
<p><strong>简要描述:</strong> </p>
<ul>
<li>获取赛事阵容接口</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>http://xx.com/api/competing/competing/get-schedule-lineup</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>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code> {
"code": 600,
"msg": "获取成功",
"result": {
"home": [
{
"team_type": "1", // 球队主客场 1:主队 2:客队
"player_code": "1", // 球员编号
"player_name": "阿蒂内拉", // 球员名
"player_ago": "30", // 球员年龄
"play_position_type": "1", //所踢位置类型 1:门将 2:后卫 3:中场 4:前锋
"play_position": "门将", //所踢位置
"play_type": "1", // 球员身份类型 1:首发 2:替补
"play_time": "0", //上场时长
"play_nums": "18(18/0)", // 上场次数 总18次(18首发/0替补)
"goal_nums": "0", // 进球数
"assists_nums": "0", //助攻数
"red_nums": "0",//红牌数
"yellow_nums": "0"//黄牌数
}
]
"visit": [
{
"team_type": "2",
"player_code": "1",
"player_name": "欧文",
"player_ago": "29",
"play_position_type": "1",
"play_position": "门将",
"play_type": "1",
"play_time": "0",
"play_nums": "5(5/0)",
"goal_nums": "0",
"assists_nums": "0",
"red_nums": "0",
"yellow_nums": "0"
},
]
}
}</code></pre>
<p><strong>返回参数说明</strong> </p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">groupid</td>
<td style="text-align: left;">int</td>
<td>用户组id,1:超级管理员;2:普通用户</td>
</tr>
</tbody>
</table>
<p><strong>备注</strong> </p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>
<p>欢迎使用ShowDoc!</p>