新增办理进度(组件)
<p><strong>接口URL</strong></p>
<p>> /subassembly/su/w/v1/deliberationopinion/addProgress</p>
<p><strong>请求方式</strong></p>
<p>> POST</p>
<p><strong>Content-Type</strong></p>
<p>> json</p>
<p><strong>请求Body参数</strong></p>
<table>
<thead>
<tr>
<th>参数名</th>
<th>示例值</th>
<th>参数类型</th>
<th>是否必填</th>
<th>参数描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>deliberationOpinionId</td>
<td>审议意见ID</td>
<td>Long</td>
<td>是</td>
<td>-</td>
</tr>
<tr>
<td>handleProgress</td>
<td>任务进度</td>
<td>BigDecimal</td>
<td>是</td>
<td>-</td>
</tr>
<tr>
<td>handleDesc</td>
<td>办理进展</td>
<td>String</td>
<td>是</td>
<td>-</td>
</tr>
</tbody>
</table>
<p><strong>请求Body示例</strong></p>
<pre><code class="language-javascript">{
&quot;deliberationOpinionId&quot;: 123345435,
&quot;handleProgress&quot;: 23.3,
&quot;handleDesc&quot;: &quot;完成23%&quot;
}</code></pre>
<p><strong>响应示例</strong></p>
<pre><code class="language-javascript">{
&quot;code&quot;: 1200,
&quot;data&quot;: true,
&quot;desc&quot;: &quot;操作成功&quot;,
&quot;ex&quot;: null,
&quot;refreshPermission&quot;: false
}</code></pre>
<ul>
<li>失败(404)</li>
</ul>
<pre><code class="language-javascript">{
&quot;code&quot;: 1601,
&quot;data&quot;: null,
&quot;desc&quot;: &quot;未选择职位&quot;,
&quot;ex&quot;: &quot;未选择职位&quot;,
&quot;refreshPermission&quot;: false
}</code></pre>