教练员管理查询教练员详情
<h5>简要描述</h5>
<ul>
<li><p>查询教练员详情信息</p></li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>/api/coach/study/{id}</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>get</li>
</ul>
<h5>Header</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">示例值</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;"><a href="http://localhost:8888/api/coach/study/3003">http://localhost:8888/api/coach/study/3003</a></td>
<td style="text-align: left;">3003为教练员id</td>
</tr>
</tbody>
</table>
<h5>成功返回示例</h5>
<pre><code>{
&quot;msg&quot;: &quot;操作成功&quot;,
&quot;total&quot;: 1,
&quot;code&quot;: 200,
&quot;playerList&quot;: [
{
&quot;id&quot;: null,
&quot;playerId&quot;: null,
&quot;matchDate&quot;: null,
&quot;matchTime&quot;: null,
&quot;matchStage&quot;: null,
&quot;opponentTeam&quot;: null,
&quot;score&quot;: null,
&quot;result&quot;: null,
&quot;pointsEarned&quot;: null,
&quot;playerName&quot;: null,
&quot;eventName&quot;: null,
&quot;representingTeam&quot;: null,
&quot;playTime&quot;: null,
&quot;points&quot;: null,
&quot;rebounds&quot;: null,
&quot;assists&quot;: null,
&quot;steals&quot;: null,
&quot;blocks&quot;: null,
&quot;twoPointMade&quot;: null,
&quot;twoPointAttempted&quot;: null,
&quot;threePointMade&quot;: null,
&quot;threePointAttempted&quot;: null,
&quot;freeThrowMade&quot;: null,
&quot;freeThrowAttempted&quot;: null,
&quot;offensiveRebounds&quot;: null,
&quot;defensiveRebounds&quot;: null,
&quot;turnovers&quot;: null,
&quot;fouls&quot;: null,
&quot;foulsDrawn&quot;: null,
&quot;efficiency&quot;: null,
&quot;gamePoints&quot;: null,
&quot;teamId&quot;: 301,
&quot;assistantCoachId&quot;: null,
&quot;assistantCoachName&quot;: null,
&quot;headCoachId&quot;: 3003,
&quot;headCoachName&quot;: null,
&quot;eventId&quot;: null,
&quot;matchRound&quot;: null,
&quot;opponentTeamId&quot;: 303,
&quot;matchScore&quot;: &quot;82:75&quot;,
&quot;isWin&quot;: 0,
&quot;points_earned&quot;: null,
&quot;date&quot;: null,
&quot;time&quot;: null
}
],
&quot;list&quot;: [
{
&quot;id&quot;: 3,
&quot;userId&quot;: 3003,
&quot;payTime&quot;: &quot;2025-08-01 09:03:34&quot;,
&quot;delFlg&quot;: null,
&quot;createTime&quot;: null,
&quot;updateTime&quot;: null,
&quot;courseId&quot;: 3,
&quot;userType&quot;: null,
&quot;coCourseName&quot;: &quot;芙蓉厅&quot;,
&quot;cost&quot;: &quot;2222.00&quot;,
&quot;name&quot;: &quot;教练三&quot;,
&quot;phone&quot;: &quot;13800138003&quot;,
&quot;coGrade&quot;: &quot;0&quot;,
&quot;registerTime&quot;: &quot;2025-07-10&quot;,
&quot;trainTime&quot;: &quot;2025-07-01&quot;,
&quot;trainPlace&quot;: &quot;比尔吉沃特&quot;,
&quot;contactPerson&quot;: &quot;wans&quot;,
&quot;contactNumber&quot;: &quot;17852581608&quot;,
&quot;email&quot;: &quot;312&quot;,
&quot;detail&quot;: &quot;&lt;p&gt;的风格和的&lt;/p&gt;&quot;,
&quot;state&quot;: 0,
&quot;coverUrl&quot;: &quot;/profile/upload/2025/08/18/捕获_20250818180850A009.PNG&quot;,
&quot;releaseTime&quot;: &quot;2025-07-03&quot;
}
]
}</code></pre>
<h5>成功返回示例的参数说明</h5>
<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;">msg</td>
<td style="text-align: left;">string</td>
<td>无</td>
</tr>
<tr>
<td style="text-align: left;">code</td>
<td style="text-align: left;">integer</td>
<td>无</td>
</tr>
<tr>
<td style="text-align: left;">playerList.opponentTeamId</td>
<td style="text-align: left;">integer</td>
<td>对手球队id</td>
</tr>
<tr>
<td style="text-align: left;">playerList.matchScore</td>
<td style="text-align: left;">string</td>
<td>比赛比分</td>
</tr>
<tr>
<td style="text-align: left;">playerList.result</td>
<td style="text-align: left;">string</td>
<td>比赛结果</td>
</tr>
<tr>
<td style="text-align: left;">playerList.date</td>
<td style="text-align: left;">date</td>
<td>比赛日期</td>
</tr>
<tr>
<td style="text-align: left;">list.coCourseName</td>
<td style="text-align: left;">string</td>
<td>培训名称</td>
</tr>
<tr>
<td style="text-align: left;">list.trainPlace</td>
<td style="text-align: left;">string</td>
<td>培训地点</td>
</tr>
<tr>
<td style="text-align: left;">list.trainTime</td>
<td style="text-align: left;">date</td>
<td>日期</td>
</tr>
</tbody>
</table>