获取球队信息
<p><strong>简要描述:</strong> </p>
<ul>
<li>获取球队信息接口</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>http://xx.com/api/competing/competing/get-zu-team-info</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;">teamCode</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>球队ID</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code> {
"code": 600,
"msg": "获取成功",
"result": {
"teamHoron": [ //球队荣誉
{
"honor_name": "欧洲超级杯冠军", //荣誉名
"times": "4", //次数
"logo_img": "",//荣誉图片
"seasons": [//获取赛季
"2020",
"2006",
"2002",
"1978"
]
}
],
"teamTransfer": [ // 转会信息
{
"player_code": "0", // 球员ID
"player_name": "奥乔", //球员名
"transfer_type": "租借", //转会类型
"old_team": "利物浦",//旧球队
"old_team_img": "https://caipiao-sys.goodluckchina.net/img/dataImg/teamTransferImg/利物浦.png",//旧球队LOGO
"new_team": "兰斯",//新球队
"new_team_img": "https://caipiao-sys.goodluckchina.net/img/dataImg/teamTransferImg/兰斯.png",// 新球队LOGO
"fee": "租借" //转会费
}
]
}
}</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>