获取班次
<p><strong>请求URI:</strong></p>
<ul>
<li><code>/employee/shift</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>GET <code>AUTH</code></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;">employee_shift_uid</td>
<td style="text-align: left;">>=0</td>
<td style="text-align: left;">int</td>
<td>唯一uid</td>
</tr>
</tbody>
</table>
<p><strong>返回示例:</strong></p>
<pre><code>{
&quot;msg&quot;: &quot;请求成功&quot;,
&quot;data&quot;: [
{
&quot;id&quot;: 9,
&quot;merchant_uid&quot;: 2241017519160001,
&quot;employee_shift_uid&quot;: 6241024499510001,//班次唯一值
&quot;title&quot;: &quot;白班&quot;,//名称
&quot;begin_work_time&quot;: &quot;09:00&quot;,//上班时间
&quot;finish_work_time&quot;: &quot;17:00&quot;,//下班时间
&quot;rest_minutes&quot;: 15,//休息时间(分)
&quot;work_minutes&quot;: 465,//工作时长(分)
&quot;create_datetime&quot;: &quot;2024-10-24 13:52:31&quot;,
&quot;update_datetime&quot;: &quot;2024-10-24 13:52:31&quot;
}
],
&quot;code&quot;: 0
}
</code></pre>