通过分组获取头像框列表
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>通过分组获取头像框列表</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://xx.com/api/getAvatarFrameListByGroup</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>GET </li>
</ul>
<h5>参数</h5>
<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;">group_id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>分组id</td>
</tr>
<tr>
<td style="text-align: left;">page</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>页码</td>
</tr>
<tr>
<td style="text-align: left;">pageSize</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">int</td>
<td>数量</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code>{
&quot;code&quot;: 200,
&quot;message&quot;: &quot;ok&quot;,
&quot;data&quot;: {
&quot;data&quot;: [
{
&quot;avatar_frame_id&quot;: 1,
&quot;title&quot;: &quot;蓝色流苏&quot;,
&quot;image&quot;: &quot;/avatar_frame/blue_tassel.png&quot;,
&quot;target_type&quot;: &quot;shop_product&quot;,
&quot;target_param&quot;: &quot;24&quot;,
&quot;is_get&quot;: true,
&quot;end_time&quot;: 3903574050,
&quot;is_wear&quot;: false
},
{
&quot;avatar_frame_id&quot;: 2,
&quot;title&quot;: &quot;小兔妖姬&quot;,
&quot;image&quot;: &quot;/avatar_frame/rabbit_demon_fairy.png&quot;,
&quot;target_type&quot;: &quot;shop_product&quot;,
&quot;target_param&quot;: &quot;24&quot;,
&quot;is_get&quot;: true,
&quot;end_time&quot;: 3903574050,
&quot;is_wear&quot;: true
},
{
&quot;avatar_frame_id&quot;: 3,
&quot;title&quot;: &quot;学霸君&quot;,
&quot;image&quot;: &quot;/avatar_frame/study_master.png&quot;,
&quot;target_type&quot;: &quot;shop_product&quot;,
&quot;target_param&quot;: &quot;24&quot;,
&quot;is_get&quot;: false,
&quot;end_time&quot;: 0,
&quot;is_wear&quot;: false
},
{
&quot;avatar_frame_id&quot;: 4,
&quot;title&quot;: &quot;花团锦簇&quot;,
&quot;image&quot;: &quot;/avatar_frame/flower_bouquet.png&quot;,
&quot;target_type&quot;: &quot;shop_product&quot;,
&quot;target_param&quot;: &quot;24&quot;,
&quot;is_get&quot;: false,
&quot;end_time&quot;: 0,
&quot;is_wear&quot;: false
},
{
&quot;avatar_frame_id&quot;: 5,
&quot;title&quot;: &quot;桂子飘飘&quot;,
&quot;image&quot;: &quot;/avatar_frame/osmanthus_floating.png&quot;,
&quot;target_type&quot;: &quot;shop_product&quot;,
&quot;target_param&quot;: &quot;24&quot;,
&quot;is_get&quot;: false,
&quot;end_time&quot;: 0,
&quot;is_wear&quot;: false
},
{
&quot;avatar_frame_id&quot;: 6,
&quot;title&quot;: &quot;极致淡雅&quot;,
&quot;image&quot;: &quot;/avatar_frame/ultimate_elegance.png&quot;,
&quot;target_type&quot;: &quot;shop_product&quot;,
&quot;target_param&quot;: &quot;24&quot;,
&quot;is_get&quot;: false,
&quot;end_time&quot;: 0,
&quot;is_wear&quot;: false
},
{
&quot;avatar_frame_id&quot;: 7,
&quot;title&quot;: &quot;心想事橙&quot;,
&quot;image&quot;: &quot;/avatar_frame/mind_express_orange.png&quot;,
&quot;target_type&quot;: &quot;shop_product&quot;,
&quot;target_param&quot;: &quot;24&quot;,
&quot;is_get&quot;: false,
&quot;end_time&quot;: 0,
&quot;is_wear&quot;: false
},
{
&quot;avatar_frame_id&quot;: 8,
&quot;title&quot;: &quot;小笼汤包&quot;,
&quot;image&quot;: &quot;/avatar_frame/baozi.png&quot;,
&quot;target_type&quot;: &quot;shop_product&quot;,
&quot;target_param&quot;: &quot;24&quot;,
&quot;is_get&quot;: false,
&quot;end_time&quot;: 0,
&quot;is_wear&quot;: false
}
],
&quot;total&quot;: 8,
&quot;current_page&quot;: 1,
&quot;per_page&quot;: 10,
&quot;last_page&quot;: 1
}
}</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;">groupid</td>
<td style="text-align: left;">int</td>
<td>用户组id,1:超级管理员;2:普通用户</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>