心血管随访


科室列表

<p>[TOC]</p> <h5>说明</h5> <ul> <li><code>测试环境URL 以 http://192.168.2.92:8080 开头</code></li> </ul> <h5>请求URL</h5> <ul> <li><code>/system/section/list</code></li> </ul> <h5>Header</h5> <table> <thead> <tr> <th style="text-align: left;">参数名</th> <th style="text-align: left;">必选</th> <th>类型</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td style="text-align: left;">Authorization</td> <td style="text-align: left;">是</td> <td>String</td> <td>登录接口返回的用户 token</td> </tr> </tbody> </table> <h5>请求方式</h5> <ul> <li>POST </li> </ul> <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;">pageNum</td> <td style="text-align: left;">int</td> <td>页码</td> </tr> <tr> <td style="text-align: left;">pageSize</td> <td style="text-align: left;">int</td> <td>页数</td> </tr> </tbody> </table> <h5>请求参数示例</h5> <pre><code>{     &amp;quot;pageNum&amp;quot;: 1,     &amp;quot;pageSize&amp;quot;: 10 }</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;">code</td> <td style="text-align: left;">String</td> <td>接口返回状态码 0000 表示成功</td> </tr> <tr> <td style="text-align: left;">msg</td> <td style="text-align: left;">String</td> <td>接口返回提示信息 success 表示成功 其他内容表示异常提示信息</td> </tr> <tr> <td style="text-align: left;">data</td> <td style="text-align: left;">Object</td> <td>接口返回对象 code = 0000 有值</td> </tr> <tr> <td style="text-align: left;">data.data</td> <td style="text-align: left;">Object</td> <td>查询成功返回的角色分页信息</td> </tr> <tr> <td style="text-align: left;">data.data.total</td> <td style="text-align: left;">int</td> <td>总条数</td> </tr> <tr> <td style="text-align: left;">data.data.pages</td> <td style="text-align: left;">int</td> <td>总页数</td> </tr> <tr> <td style="text-align: left;">data.data.pageNum</td> <td style="text-align: left;">int</td> <td>当前页</td> </tr> <tr> <td style="text-align: left;">data.data.pageSize</td> <td style="text-align: left;">int</td> <td>每页条数</td> </tr> </tbody> </table> <h5>list 参数说明</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;">id</td> <td style="text-align: left;">Long</td> <td>科室id</td> </tr> <tr> <td style="text-align: left;">sectionName</td> <td style="text-align: left;">String</td> <td>科室名称</td> </tr> <tr> <td style="text-align: left;">orgNum</td> <td style="text-align: left;">String</td> <td>科室编号</td> </tr> <tr> <td style="text-align: left;">sectionType</td> <td style="text-align: left;">String</td> <td>科室类型</td> </tr> <tr> <td style="text-align: left;">sectionTypeName</td> <td style="text-align: left;">String</td> <td>科室类型名称</td> </tr> <tr> <td style="text-align: left;">sectionDesc</td> <td style="text-align: left;">String</td> <td>科室描述</td> </tr> </tbody> </table> <h5>logoFile 参数说明</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;">fileName</td> <td style="text-align: left;">String</td> <td>附件名称</td> </tr> <tr> <td style="text-align: left;">filePath</td> <td style="text-align: left;">String</td> <td>附件后台保存路径</td> </tr> <tr> <td style="text-align: left;">fileUrl</td> <td style="text-align: left;">String</td> <td>附件前端访问url</td> </tr> <tr> <td style="text-align: left;">fileType</td> <td style="text-align: left;">String</td> <td>附件类型 0-logo 1-图片 2-视频</td> </tr> </tbody> </table> <h5>fileList 参数说明</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;">fileName</td> <td style="text-align: left;">String</td> <td>附件名称</td> </tr> <tr> <td style="text-align: left;">filePath</td> <td style="text-align: left;">String</td> <td>附件后台保存路径</td> </tr> <tr> <td style="text-align: left;">fileUrl</td> <td style="text-align: left;">String</td> <td>附件前端访问url</td> </tr> <tr> <td style="text-align: left;">fileType</td> <td style="text-align: left;">String</td> <td>附件类型 0-logo 1-图片 2-视频</td> </tr> </tbody> </table> <h5>返回示例</h5> <pre><code>{     &amp;quot;code&amp;quot;: &amp;quot;0000&amp;quot;,     &amp;quot;msg&amp;quot;: &amp;quot;success&amp;quot;,     &amp;quot;data&amp;quot;: {         &amp;quot;data&amp;quot;: {             &amp;quot;total&amp;quot;: 1,             &amp;quot;list&amp;quot;: [                 {                     &amp;quot;id&amp;quot;: 1,                     &amp;quot;sectionName&amp;quot;: &amp;quot;心血管内科-修改了&amp;quot;,                     &amp;quot;orgNum&amp;quot;: null,                     &amp;quot;sectionType&amp;quot;: &amp;quot;0&amp;quot;,                     &amp;quot;sectionNum&amp;quot;: &amp;quot;d24fafed5c9a48a7af7da023ffa6da6d&amp;quot;,                     &amp;quot;sectionDesc&amp;quot;: &amp;quot;&amp;lt;p&amp;gt;这里是测试用的!!!!!!!23123123313131这里是分割线-修改了&amp;lt;/p&amp;gt;&amp;quot;,                     &amp;quot;delFlag&amp;quot;: &amp;quot;0&amp;quot;,                     &amp;quot;sectionTypeName&amp;quot;: &amp;quot;内科&amp;quot;,                     &amp;quot;logoFile&amp;quot;: {                         &amp;quot;fileId&amp;quot;: 12,                         &amp;quot;relationId&amp;quot;: &amp;quot;d24fafed5c9a48a7af7da023ffa6da6d&amp;quot;,                         &amp;quot;fileName&amp;quot;: &amp;quot;科室logo_20250307165921A001.png&amp;quot;,                         &amp;quot;filePath&amp;quot;: &amp;quot;/profile/upload/2025/03/07/科室logo_20250307165921A001.png&amp;quot;,                         &amp;quot;fileUrl&amp;quot;: &amp;quot;http://192.168.2.92:8080/profile/upload/2025/03/07/科室logo_20250307165921A001.png&amp;quot;,                         &amp;quot;fileType&amp;quot;: &amp;quot;0&amp;quot;,                         &amp;quot;fileDesc&amp;quot;: null,                         &amp;quot;createTime&amp;quot;: &amp;quot;2025-03-07 17:13:59&amp;quot;,                         &amp;quot;updateTime&amp;quot;: &amp;quot;2025-03-07 17:13:59&amp;quot;,                         &amp;quot;createBy&amp;quot;: &amp;quot;admin&amp;quot;,                         &amp;quot;updateBy&amp;quot;: &amp;quot;admin&amp;quot;,                         &amp;quot;delFlag&amp;quot;: null                     },                     &amp;quot;fileList&amp;quot;: [                         {                             &amp;quot;fileId&amp;quot;: 11,                             &amp;quot;relationId&amp;quot;: &amp;quot;d24fafed5c9a48a7af7da023ffa6da6d&amp;quot;,                             &amp;quot;fileName&amp;quot;: &amp;quot;科室图片_20250307165934A002.png&amp;quot;,                             &amp;quot;filePath&amp;quot;: &amp;quot;/profile/upload/2025/03/07/科室图片_20250307165934A002.png&amp;quot;,                             &amp;quot;fileUrl&amp;quot;: &amp;quot;http://192.168.2.92:8080/profile/upload/2025/03/07/科室图片_20250307165934A002.png&amp;quot;,                             &amp;quot;fileType&amp;quot;: &amp;quot;1&amp;quot;,                             &amp;quot;fileDesc&amp;quot;: null,                             &amp;quot;createTime&amp;quot;: &amp;quot;2025-03-07 17:13:59&amp;quot;,                             &amp;quot;updateTime&amp;quot;: &amp;quot;2025-03-07 17:13:59&amp;quot;,                             &amp;quot;createBy&amp;quot;: &amp;quot;admin&amp;quot;,                             &amp;quot;updateBy&amp;quot;: &amp;quot;admin&amp;quot;,                             &amp;quot;delFlag&amp;quot;: null                         }                     ],                     &amp;quot;createTime&amp;quot;: &amp;quot;2025-03-07 17:11:33&amp;quot;,                     &amp;quot;updateTime&amp;quot;: &amp;quot;2025-03-07 17:13:59&amp;quot;,                     &amp;quot;createBy&amp;quot;: &amp;quot;admin&amp;quot;,                     &amp;quot;updateBy&amp;quot;: &amp;quot;admin&amp;quot;                 }             ],             &amp;quot;pageNum&amp;quot;: 1,             &amp;quot;pageSize&amp;quot;: 10,             &amp;quot;size&amp;quot;: 1,             &amp;quot;startRow&amp;quot;: 1,             &amp;quot;endRow&amp;quot;: 1,             &amp;quot;pages&amp;quot;: 1,             &amp;quot;prePage&amp;quot;: 0,             &amp;quot;nextPage&amp;quot;: 0,             &amp;quot;isFirstPage&amp;quot;: true,             &amp;quot;isLastPage&amp;quot;: true,             &amp;quot;hasPreviousPage&amp;quot;: false,             &amp;quot;hasNextPage&amp;quot;: false,             &amp;quot;navigatePages&amp;quot;: 8,             &amp;quot;navigatepageNums&amp;quot;: [                 1             ],             &amp;quot;navigateFirstPage&amp;quot;: 1,             &amp;quot;navigateLastPage&amp;quot;: 1         }     } }</code></pre>

页面列表

ITEM_HTML