点赞列表
<h2>POST 点赞列表</h2>
<p>POST /dataviewdev/program/starList</p>
<blockquote>
<p>Body 请求参数</p>
</blockquote>
<pre><code class="language-json">{
"programUuid": "string"
}</code></pre>
<h3>请求参数</h3>
<table>
<thead>
<tr>
<th>名称</th>
<th>位置</th>
<th>类型</th>
<th>必选</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>token</td>
<td>header</td>
<td>string</td>
<td>true</td>
<td>none</td>
</tr>
<tr>
<td>uuid</td>
<td>header</td>
<td>string</td>
<td>false</td>
<td>none</td>
</tr>
<tr>
<td>username</td>
<td>header</td>
<td>string</td>
<td>false</td>
<td>none</td>
</tr>
<tr>
<td>name</td>
<td>header</td>
<td>string</td>
<td>false</td>
<td>none</td>
</tr>
<tr>
<td>body</td>
<td>body</td>
<td>object</td>
<td>false</td>
<td>none</td>
</tr>
<tr>
<td>» programUuid</td>
<td>body</td>
<td>string</td>
<td>true</td>
<td>none</td>
</tr>
</tbody>
</table>
<blockquote>
<p>返回示例</p>
<p>成功</p>
</blockquote>
<pre><code class="language-json">{
"errorCode": 0,
"message": "成功",
"time": 1647419646973,
"responseBody": [
{
"uuid": "e8fc0126c1aa455693c56fcb91c87777",
"star": true,
"userUuid": "016fb1c85b834edc95ba17d815258c31",
"updateTime": "2022-03-16 15:01:00",
"programUuid": "e86a0b236e664300915e98c4c92b9e60",
"userName": "赵国超"
}
]
}</code></pre>
<h3>返回结果</h3>
<table>
<thead>
<tr>
<th>状态码</th>
<th>状态码含义</th>
<th>说明</th>
<th>数据模型</th>
</tr>
</thead>
<tbody>
<tr>
<td>200</td>
<td><a href="https://tools.ietf.org/html/rfc7231#section-6.3.1">OK</a></td>
<td>成功</td>
<td>Inline</td>
</tr>
</tbody>
</table>
<h3>返回数据结构</h3>