心血管随访


修改科室

<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/organization/edit</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;">id</td> <td style="text-align: left;">String</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;">sectionNum</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;">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;">fileType</td> <td style="text-align: left;">String</td> <td>附件类型,此处传 0-logo</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;">fileType</td> <td style="text-align: left;">String</td> <td>附件类型,此处传 1-图片</td> </tr> </tbody> </table> <h5>请求参数示例</h5> <pre><code>{     &amp;quot;id&amp;quot;:1,     &amp;quot;sectionName&amp;quot;: &amp;quot;心血管内科-修改了&amp;quot;,     &amp;quot;sectionType&amp;quot;: &amp;quot;0&amp;quot;,     &amp;quot;orgType&amp;quot;: &amp;quot;综合医院&amp;quot;,     &amp;quot;sectionNum&amp;quot;: &amp;quot;d24fafed5c9a48a7af7da023ffa6da6d&amp;quot;,     &amp;quot;sectionDesc&amp;quot;: &amp;quot;&amp;lt;p&amp;gt;&amp;lt;div&amp;gt;&amp;lt;p&amp;gt;这里是测试用的!!!!!!!&amp;lt;/p&amp;gt;&amp;lt;h2&amp;gt;23123123313131&amp;lt;/h2&amp;gt;&amp;lt;br/&amp;gt;这里是分割线-修改了&amp;lt;/div&amp;gt;&amp;lt;/p&amp;gt;&amp;quot;,     &amp;quot;logoFile&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;fileList&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;         }     ] }</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> </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;: null }</code></pre>

页面列表

ITEM_HTML