增加员工排班
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>API 名称</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>/enterpriseManage/attendance/deptWorkTime/insertEmployeeWorkTime</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<h5>参数</h5>
<pre><code>{
workId: 135,
empId: 1931,
startDate: &quot;2025-03-17&quot;
}</code></pre>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th style="text-align: left;">说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">workId</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">number</td>
<td style="text-align: left;">排班主表的id,注意是work_time表的id</td>
</tr>
<tr>
<td style="text-align: left;">empId</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">number</td>
<td style="text-align: left;">员工Id</td>
</tr>
<tr>
<td style="text-align: left;">startDate</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td style="text-align: left;">时间,注意格式为 2025-03-02</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code> {
&quot;code&quot;: 200,
&quot;message&quot;: &quot;成功&quot;,
&quot;data&quot;: 938,
&quot;timestamp&quot;: 1742034016681,
&quot;executeTime&quot;: null
}</code></pre>
<h5>返回参数说明</h5>
<p>说明:返回员工主表(dept_work_time)的id,</p>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>