查询电子原文下载情况
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>供第三方查询档案接收接口中,电子原文异步下载情况</li>
</ul>
<h5>Webservice接口</h5>
<ul>
<li>
<p>URL <code>/services/ArchiveService?wsdl</code></p>
</li>
<li>方法 <code>getDownloadDocResult</code></li>
</ul>
<h5>Restful接口</h5>
<ul>
<li>
<p>URL <code>/api/archive/recieve/getDownloadDocResult</code></p>
</li>
<li>
<p>方式 <code>post</code></p>
</li>
<li>请求数据类型 <code>text/plain</code></li>
</ul>
<h5>请求头</h5>
<table>
<thead>
<tr>
<th>参数名</th>
<th>必选</th>
<th>参数类型</th>
<th>说明</th>
<th>参数位置</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://www.showdoc.com.cn/2408347292986702/10705194217472618">token</a></td>
<td>rest接口必选: 是 <br> Webservice接口不需要此参数<br>postman工具测试可以传cookie</td>
<td>string</td>
<td>认证token值</td>
<td>header</td>
</tr>
</tbody>
</table>
<h5>请求体</h5>
<table>
<thead>
<tr>
<th>参数名</th>
<th>必选</th>
<th>参数类型</th>
<th>说明</th>
<th>参数位置</th>
</tr>
</thead>
<tbody>
<tr>
<td>arcFormbizids</td>
<td>是</td>
<td>string</td>
<td>档案接收接口返回的formBizId(多条数据以,分隔)</td>
<td>Body-json</td>
</tr>
</tbody>
</table>
<h5>Rest请求示例</h5>
<p><a href="http://localhost:88/api/archive/recieve/getDownloadDocResult?arcFormbizids=76000117">http://localhost:88/api/archive/recieve/getDownloadDocResult?arcFormbizids=76000117</a>
<img src="https://www.showdoc.com.cn/server/api/attachment/visitFile?sign=8609780f74c2822eddc22aec1d4a7d37&amp;file=file.png" alt="" /></p>
<h5>返回示例</h5>
<pre><code class="language-json">{
&quot;msg&quot;: &quot;&quot;,
&quot;flag&quot;: true,
&quot;datas&quot;: [
{
&quot;waitDownLoadDocNums&quot;: 0,
&quot;arcFormbizid&quot;: &quot;76000117&quot;,
&quot;failDocInfor&quot;: [
{
&quot;path&quot;: &quot;ftp://archives/ftptest/lccTest/doc/7.jpg&quot;,
&quot;fileName&quot;: &quot;1.jpg&quot;
}
],
&quot;sucessDocNums&quot;: 3,
&quot;failDocNums&quot;: 1,
&quot;allDocNums&quot;: 4
}
]
}</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;">msg</td>
<td style="text-align: left;">string</td>
<td>提示信息</td>
</tr>
<tr>
<td style="text-align: left;">flag</td>
<td style="text-align: left;">boolean</td>
<td>数据查询结果状态</td>
</tr>
<tr>
<td style="text-align: left;">arcFormbizid</td>
<td style="text-align: left;">string</td>
<td>档案条目或者元数据的formbizid</td>
</tr>
<tr>
<td style="text-align: left;">allDocNums</td>
<td style="text-align: left;">int</td>
<td>总计电子原文数量</td>
</tr>
<tr>
<td style="text-align: left;">sucessDocNums</td>
<td style="text-align: left;">int</td>
<td>下载成功的电子原文数量</td>
</tr>
<tr>
<td style="text-align: left;">waitDownLoadDocNums</td>
<td style="text-align: left;">int</td>
<td>等待下载的电子原文数量</td>
</tr>
<tr>
<td style="text-align: left;">failDocNums</td>
<td style="text-align: left;">int</td>
<td>下载失败的电子原文数量</td>
</tr>
<tr>
<td style="text-align: left;">fileName</td>
<td style="text-align: left;">int</td>
<td>下载失败的电子原文名称</td>
</tr>
<tr>
<td style="text-align: left;">path</td>
<td style="text-align: left;">string</td>
<td>下载失败的电子原文路径</td>
</tr>
</tbody>
</table>
<h5>备注</h5>