问答查询
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>患者签约申请分页查询签约申请信息 </li>
</ul>
<h5>说明</h5>
<ul>
<li><code>测试环境URL 以 http://192.168.2.92:9090 开头</code></li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>/health/reply/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;">String</td>
<td>第几页</td>
</tr>
<tr>
<td style="text-align: left;">pageNum</td>
<td style="text-align: left;">String</td>
<td>一页几条记录</td>
</tr>
</tbody>
</table>
<pre><code>{
&quot;pageNum&quot;: &quot;1&quot;,
&quot;pageSize&quot;: &quot;10&quot;,
&quot;category&quot;: &quot;基本问题&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>{
&quot;code&quot;: &quot;0000&quot;,
&quot;msg&quot;: &quot;success&quot;,
&quot;data&quot;: {
&quot;data&quot;: {
&quot;total&quot;: 9,
&quot;list&quot;: [
{
&quot;id&quot;: 9,
&quot;patientId&quot;: null,
&quot;patientName&quot;: null,
&quot;doctorBadge&quot;: null,
&quot;doctorName&quot;: null,
&quot;sectionId&quot;: null,
&quot;sectionName&quot;: null,
&quot;question&quot;: &quot;冠心病患者需要注意什么?&quot;,
&quot;answer&quot;: &quot;冠心病患者应注意控制血压、血脂和血糖,避免吸烟和过度饮酒,保持健康的体重,定期进行体育锻炼,并按医生的建议服用药物。&quot;,
&quot;category&quot;: &quot;基本问题&quot;,
&quot;publishTime&quot;: &quot;2024-12-26 10:20:00&quot;,
&quot;viewCount&quot;: 0,
&quot;likeCount&quot;: 0,
&quot;createTime&quot;: null,
&quot;updateTime&quot;: &quot;2025-03-14 17:31:47&quot;,
&quot;createBy&quot;: null,
&quot;updateBy&quot;: null,
&quot;status&quot;: null
},
{
&quot;id&quot;: 8,
&quot;patientId&quot;: null,
&quot;patientName&quot;: null,
&quot;doctorBadge&quot;: null,
&quot;doctorName&quot;: null,
&quot;sectionId&quot;: null,
&quot;sectionName&quot;: null,
&quot;question&quot;: &quot;高血压患者可以吃什么水果?&quot;,
&quot;answer&quot;: &quot;高血压患者可以选择低钠、高钾的水果,如香蕉、橙子、苹果等。这些水果有助于降低血压,但要注意适量,避免摄入过多的糖分。&quot;,
&quot;category&quot;: &quot;基本问题&quot;,
&quot;publishTime&quot;: &quot;2024-12-26 10:15:00&quot;,
&quot;viewCount&quot;: 0,
&quot;likeCount&quot;: 0,
&quot;createTime&quot;: null,
&quot;updateTime&quot;: &quot;2025-03-14 17:31:47&quot;,
&quot;createBy&quot;: null,
&quot;updateBy&quot;: null,
&quot;status&quot;: null
},
{
&quot;id&quot;: 7,
&quot;patientId&quot;: null,
&quot;patientName&quot;: null,
&quot;doctorBadge&quot;: null,
&quot;doctorName&quot;: null,
&quot;sectionId&quot;: null,
&quot;sectionName&quot;: null,
&quot;question&quot;: &quot;糖尿病患者如何控制血糖?&quot;,
&quot;answer&quot;: &quot;糖尿病患者应遵循医生的指导,合理饮食、适当运动、按时服药或注射胰岛素,并定期监测血糖水平。避免高糖、高脂肪食物,保持健康的生活方式。&quot;,
&quot;category&quot;: &quot;基本问题&quot;,
&quot;publishTime&quot;: &quot;2024-12-26 10:10:00&quot;,
&quot;viewCount&quot;: 0,
&quot;likeCount&quot;: 0,
&quot;createTime&quot;: null,
&quot;updateTime&quot;: &quot;2025-03-14 17:31:47&quot;,
&quot;createBy&quot;: null,
&quot;updateBy&quot;: null,
&quot;status&quot;: null
},
{
&quot;id&quot;: 6,
&quot;patientId&quot;: null,
&quot;patientName&quot;: null,
&quot;doctorBadge&quot;: null,
&quot;doctorName&quot;: null,
&quot;sectionId&quot;: null,
&quot;sectionName&quot;: null,
&quot;question&quot;: &quot;心脑血管患者运动量多大合适?&quot;,
&quot;answer&quot;: &quot;运动要强调长期、规律、坚持,而不是一次性大活动量。活动量的大小是否合适,可以用心率作为参考。一般建议心率控制在最大心率的60%-80%之间。&quot;,
&quot;category&quot;: &quot;基本问题&quot;,
&quot;publishTime&quot;: &quot;2024-12-26 10:05:00&quot;,
&quot;viewCount&quot;: 0,
&quot;likeCount&quot;: 0,
&quot;createTime&quot;: null,
&quot;updateTime&quot;: &quot;2025-03-14 17:31:47&quot;,
&quot;createBy&quot;: null,
&quot;updateBy&quot;: null,
&quot;status&quot;: null
},
{
&quot;id&quot;: 5,
&quot;patientId&quot;: null,
&quot;patientName&quot;: null,
&quot;doctorBadge&quot;: null,
&quot;doctorName&quot;: null,
&quot;sectionId&quot;: null,
&quot;sectionName&quot;: null,
&quot;question&quot;: &quot;怎么早期发现血管有无斑块?&quot;,
&quot;answer&quot;: &quot;血脂升高造成的不良影响不在于血脂本身而在于沉积在血管壁上形成动脉粥样硬化斑块,这是导致心脑血管疾病的主要原因。定期体检,特别是血脂检查和颈动脉超声检查,可以帮助早期发现血管斑块。&quot;,
&quot;category&quot;: &quot;基本问题&quot;,
&quot;publishTime&quot;: &quot;2024-12-26 10:00:00&quot;,
&quot;viewCount&quot;: 0,
&quot;likeCount&quot;: 0,
&quot;createTime&quot;: null,
&quot;updateTime&quot;: &quot;2025-03-14 17:31:47&quot;,
&quot;createBy&quot;: null,
&quot;updateBy&quot;: null,
&quot;status&quot;: null
},
{
&quot;id&quot;: 4,
&quot;patientId&quot;: null,
&quot;patientName&quot;: null,
&quot;doctorBadge&quot;: null,
&quot;doctorName&quot;: null,
&quot;sectionId&quot;: null,
&quot;sectionName&quot;: null,
&quot;question&quot;: &quot;血脂正常后就可以停药吗?&quot;,
&quot;answer&quot;: &quot;有些刚发现不久的血脂轻度异常,也不伴有心脑血管疾病,这类人通过吃药和改善生活方式可以恢复正常。但如果是长期高血脂且伴有其他心血管疾病,需要遵医嘱持续用药。&quot;,
&quot;category&quot;: &quot;基本问题&quot;,
&quot;publishTime&quot;: &quot;2024-12-26 09:55:00&quot;,
&quot;viewCount&quot;: 0,
&quot;likeCount&quot;: 0,
&quot;createTime&quot;: null,
&quot;updateTime&quot;: &quot;2025-03-14 17:31:47&quot;,
&quot;createBy&quot;: null,
&quot;updateBy&quot;: null,
&quot;status&quot;: null
},
{
&quot;id&quot;: 3,
&quot;patientId&quot;: null,
&quot;patientName&quot;: null,
&quot;doctorBadge&quot;: null,
&quot;doctorName&quot;: null,
&quot;sectionId&quot;: null,
&quot;sectionName&quot;: null,
&quot;question&quot;: &quot;心血管疾病患者该怎么吃?&quot;,
&quot;answer&quot;: &quot;患者应遵循低盐、低脂、低糖的“三低”饮食原则,减少高胆固醇食物的摄入,增加富含膳食纤维的食物。多吃蔬菜水果,适量摄入优质蛋白质。&quot;,
&quot;category&quot;: &quot;基本问题&quot;,
&quot;publishTime&quot;: &quot;2024-12-26 09:50:00&quot;,
&quot;viewCount&quot;: 0,
&quot;likeCount&quot;: 0,
&quot;createTime&quot;: null,
&quot;updateTime&quot;: &quot;2025-03-14 17:31:47&quot;,
&quot;createBy&quot;: null,
&quot;updateBy&quot;: null,
&quot;status&quot;: null
},
{
&quot;id&quot;: 2,
&quot;patientId&quot;: null,
&quot;patientName&quot;: null,
&quot;doctorBadge&quot;: null,
&quot;doctorName&quot;: null,
&quot;sectionId&quot;: null,
&quot;sectionName&quot;: null,
&quot;question&quot;: &quot;喝酒会引起心肌梗死吗?&quot;,
&quot;answer&quot;: &quot;会。喝酒是如何引起心肌梗死的,要从两方面说:喝酒,尤其是过量饮酒,与促发心肌梗死的各种因素有关。长期大量饮酒会导致心脏负担加重,增加心肌梗死的风险。&quot;,
&quot;category&quot;: &quot;基本问题&quot;,
&quot;publishTime&quot;: &quot;2024-12-26 09:45:00&quot;,
&quot;viewCount&quot;: 0,
&quot;likeCount&quot;: 0,
&quot;createTime&quot;: null,
&quot;updateTime&quot;: &quot;2025-03-14 17:31:47&quot;,
&quot;createBy&quot;: null,
&quot;updateBy&quot;: null,
&quot;status&quot;: null
},
{
&quot;id&quot;: 1,
&quot;patientId&quot;: null,
&quot;patientName&quot;: null,
&quot;doctorBadge&quot;: null,
&quot;doctorName&quot;: null,
&quot;sectionId&quot;: null,
&quot;sectionName&quot;: null,
&quot;question&quot;: &quot;血压偶尔高,是不是高血压?&quot;,
&quot;answer&quot;: &quot;不一定。首先,要确保测量血压的过程是规范的,这样的血压值才有参考价值。不要在憋尿或情绪激动时测量血压。如果多次测量结果都偏高,建议去医院进行详细检查。&quot;,
&quot;category&quot;: &quot;基本问题&quot;,
&quot;publishTime&quot;: &quot;2024-12-26 09:41:00&quot;,
&quot;viewCount&quot;: 0,
&quot;likeCount&quot;: 0,
&quot;createTime&quot;: null,
&quot;updateTime&quot;: &quot;2025-03-14 17:31:47&quot;,
&quot;createBy&quot;: null,
&quot;updateBy&quot;: null,
&quot;status&quot;: null
}
],
&quot;pageNum&quot;: 1,
&quot;pageSize&quot;: 10,
&quot;size&quot;: 9,
&quot;startRow&quot;: 1,
&quot;endRow&quot;: 9,
&quot;pages&quot;: 1,
&quot;prePage&quot;: 0,
&quot;nextPage&quot;: 0,
&quot;isFirstPage&quot;: true,
&quot;isLastPage&quot;: true,
&quot;hasPreviousPage&quot;: false,
&quot;hasNextPage&quot;: false,
&quot;navigatePages&quot;: 8,
&quot;navigatepageNums&quot;: [
1
],
&quot;navigateFirstPage&quot;: 1,
&quot;navigateLastPage&quot;: 1
}
}
}</code></pre>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>