查询预案详情
<h2>查询预案详情</h2>
<p><strong>接口地址</strong>:<code>/system/doc/{id}</code></p>
<p><strong>请求方式</strong>:<code>GET</code></p>
<p><strong>请求数据类型</strong>:<code>application/x-www-form-urlencoded</code></p>
<p><strong>响应数据类型</strong>:<code>*/*</code></p>
<p><strong>接口描述</strong>:<p>查询预案详情</p></p>
<p><strong>请求示例</strong>:<code>/system/doc/1</code></p>
<p><strong>请求参数</strong>:</p>
<table>
<thead>
<tr>
<th>参数名称</th>
<th>参数说明</th>
<th>请求类型</th>
<th>是否必须</th>
<th>数据类型</th>
</tr>
</thead>
<tbody>
<tr>
<td>id</td>
<td>列表中的id</td>
<td>query</td>
<td>true</td>
<td>int</td>
</tr>
</tbody>
</table>
<p><strong>响应状态</strong>:</p>
<table>
<thead>
<tr>
<th>状态码</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>200</td>
<td>OK</td>
</tr>
</tbody>
</table>
<p><strong>响应参数</strong>:</p>
<table>
<thead>
<tr>
<th>参数名称</th>
<th>参数说明</th>
<th>类型</th>
<th>schema</th>
</tr>
</thead>
<tbody>
<tr>
<td>code</td>
<td>消息状态码</td>
<td>integer(int32)</td>
<td>integer(int32)</td>
</tr>
<tr>
<td>msg</td>
<td>消息内容</td>
<td>string</td>
</tr>
<tr>
<td>rows</td>
<td>列表数据</td>
<td>array</td>
<td>CommunityDangqunServiceCenter</td>
</tr>
<tr>
<td>&emsp;&emsp;id</td>
<td>属地结构信息不能为空</td>
<td>string</td>
</tr>
<tr>
<td>&emsp;&emsp;planName</td>
<td>预案名称</td>
<td>string</td>
</tr>
<tr>
<td>&emsp;&emsp;planType</td>
<td>预案分类</td>
<td>string</td>
</tr>
<tr>
<td>&emsp;&emsp;planLevel</td>
<td>预案级别</td>
<td>string</td>
</tr>
<tr>
<td>&emsp;&emsp;planInfo</td>
<td>预案内容</td>
<td>string</td>
</tr>
<tr>
<td>total</td>
<td>总记录数</td>
<td>integer(int64)</td>
<td>integer(int64)</td>
</tr>
</tbody>
</table>
<p><strong>响应示例</strong>:</p>
<pre><code class="language-javascript">{
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;操作成功&quot;,
&quot;data&quot;: {
&quot;planDoc&quot;: {
&quot;id&quot;: 4,
&quot;planName&quot;: &quot;预案名称1&quot;,
&quot;planType&quot;: &quot;预案分类1&quot;,
&quot;planLevel&quot;: &quot;预案级别1&quot;,
&quot;planInfo&quot;: &quot;预案内容1&quot;,
&quot;delFlag&quot;: 0
},
&quot;regionIds&quot;: [
1,
2
],
&quot;planResourceList&quot;: [
{
&quot;id&quot;: 1,
&quot;resourceName&quot;: &quot;资源1&quot;,
&quot;resourceType&quot;: &quot;1&quot;,
&quot;resourceNumber&quot;: 1,
&quot;resourceDisposable&quot;: &quot;1&quot;,
&quot;resourceImage&quot;: null,
&quot;createTime&quot;: null,
&quot;delFlag&quot;: 0
},
{
&quot;id&quot;: 2,
&quot;resourceName&quot;: &quot;资源2&quot;,
&quot;resourceType&quot;: &quot;2&quot;,
&quot;resourceNumber&quot;: 1,
&quot;resourceDisposable&quot;: &quot;1&quot;,
&quot;resourceImage&quot;: null,
&quot;createTime&quot;: null,
&quot;delFlag&quot;: 0
}
],
&quot;planActionRelationVOList&quot;: [
{
&quot;nickName&quot;: &quot;林志豪&quot;,
&quot;deptName&quot;: &quot;测试部门&quot;,
&quot;userId&quot;: 1,
&quot;actionEventState&quot;: 0,
&quot;actionText&quot;: &quot;事前&quot;
},
{
&quot;nickName&quot;: &quot;林志豪&quot;,
&quot;deptName&quot;: &quot;测试部门&quot;,
&quot;userId&quot;: 2,
&quot;actionEventState&quot;: 1,
&quot;actionText&quot;: &quot;事中&quot;
},
{
&quot;nickName&quot;: &quot;林志豪&quot;,
&quot;deptName&quot;: &quot;测试部门&quot;,
&quot;userId&quot;: 3,
&quot;actionEventState&quot;: 2,
&quot;actionText&quot;: &quot;事后&quot;
}
]
},
&quot;error&quot;: false,
&quot;success&quot;: true
}</code></pre>