加工计划单据号
<h5>简要描述</h5>
<ul>
<li>获取单据号</li>
<li>
<p>开发人员:陈杰</p>
<h5>请求URL</h5>
</li>
<li><code>http://localhost:port/Retailing/GetProcessPlanBillNumber</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>Post</li>
</ul>
<h5>参数</h5>
<table>
<thead>
<tr>
<th>参数名</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>nodeCode</td>
<td>是</td>
<td>string</td>
<td>节点编码</td>
</tr>
<tr>
<td>employeeCode</td>
<td>是</td>
<td>string</td>
<td>操作人编码</td>
</tr>
</tbody>
</table>
<h5>请求示例</h5>
<pre><code> {
&quot;nodeCode&quot;: &quot;1018&quot;,
&quot;employeeCode&quot;: &quot;9100&quot;
}</code></pre>
<h5>返回示例</h5>
<pre><code>{
&quot;OperateCode&quot;:9998,
&quot;ErrorMessage&quot;: &quot;&quot;,
&quot;obj&quot;: [
&quot;BillNumber&quot;: &quot;20251111000002&quot;
]
}</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;">OperateCode</td>
<td style="text-align: left;">int</td>
<td>状态码,9998:成功,其他:失败</td>
</tr>
<tr>
<td style="text-align: left;">ErrorMessage</td>
<td style="text-align: left;">string</td>
<td>异常消息</td>
</tr>
<tr>
<td style="text-align: left;">obj</td>
<td style="text-align: left;">object</td>
<td>返回的数据</td>
</tr>
</tbody>
</table>
<h1>备注</h1>
<ul>
<li>更多返回状态码请看首页的状态码描述</li>
</ul>