取消(删除)一个员工排班
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>取消(删除)一个员工排班,相当置员工休息</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>erp/enterpriseManage/attendance/deptWorkTime/delete</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<h5>参数</h5>
<pre><code>{
empId:1931,
startDate:&quot;2025-03-02&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;">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;: 935,
&quot;timestamp&quot;: 1742013706755,
&quot;executeTime&quot;: null
}</code></pre>
<h5>返回参数说明</h5>
<p>说明:成功返回员工排班的id,失败返回 0</p>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>