列表
<h2>列表</h2>
<p><strong>接口地址</strong>:<code>/system/progress/list</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>:</p>
<p><strong>请求参数</strong>:</p>
<table>
<thead>
<tr>
<th>参数名称</th>
<th>参数说明</th>
<th>请求类型</th>
<th>是否必须</th>
<th>数据类型</th>
</tr>
</thead>
<tbody>
<tr>
<td>progressType</td>
<td>启动类型:0系统启动 1外部接口启动</td>
<td>query</td>
<td>false</td>
<td>integer(int32)</td>
</tr>
<tr>
<td>progressPlanId</td>
<td>预案id</td>
<td>query</td>
<td>false</td>
<td>integer(int32)</td>
</tr>
<tr>
<td>progressState</td>
<td>启动状态 1启动时 0已结束</td>
<td>query</td>
<td>false</td>
<td>integer(int32)</td>
</tr>
</tbody>
</table>
<p><strong>响应状态</strong>:</p>
<table>
<thead>
<tr>
<th>状态码</th>
<th>说明</th>
<th>schema</th>
</tr>
</thead>
<tbody>
<tr>
<td>200</td>
<td>OK</td>
<td>ResponsePageInfo«CommunityDangqunServiceCenter»</td>
</tr>
<tr>
<td>401</td>
<td>Unauthorized</td>
</tr>
<tr>
<td>403</td>
<td>Forbidden</td>
</tr>
<tr>
<td>404</td>
<td>Not Found</td>
</tr>
</tbody>
</table>
<p><strong>响应参数</strong>:</p>
<pre><code class="language-java">/** 主键id */
@TableId(type = IdType.AUTO)
private Long id;
/** 启动类型:0系统启动 1外部接口启动 */
@TableField(&quot;progress_type&quot;)
private Long progressType;
/** 预案id */
@TableField(&quot;progress_plan_id&quot;)
private Long progressPlanId;
/** 预案名称 */
@TableField(exist = false)
private String progressPlanName;
/** 启动人员userId */
@TableField(&quot;progress_user_id&quot;)
private Long progressUserId;
/** 启动人员姓名 */
@TableField(&quot;progress_nick_name&quot;)
private Long progressNickName;
/** 启动状态 1启动时 0已结束 */
@TableField(&quot;progress_state&quot;)
private Long progressState;
/** 创建时间 */
@TableField(&quot;create_time&quot;)
private Date createTime;</code></pre>
<p><strong>响应示例</strong>:</p>
<pre><code class="language-javascript">{
&quot;total&quot;: 1,
&quot;rows&quot;: [
{
&quot;id&quot;: 1,
&quot;progressType&quot;: 1,
&quot;progressPlanId&quot;: 4,
&quot;progressPlanName&quot;: &quot;预案名称2&quot;,
&quot;progressUserId&quot;: 1,
&quot;progressNickName&quot;: &quot;林志豪&quot;,
&quot;progressState&quot;: 1,
&quot;createTime&quot;: &quot;2024-04-30 09:03:59&quot;
}
],
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;success&quot;
}</code></pre>