行程报备-查询历史体温信息(分页查询)
<h2>行程报备-查询历史体温信息(分页查询)</h2>
<p><strong>简要描述:</strong> </p>
<ul>
<li>查询历史体温信息(分页查询)</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>http://cs.ypt.szsti.org/epidemic/prevention/personaltemperature/getPersonTemperatureRX</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST </li>
</ul>
<p><strong>参数:</strong> </p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">personnelId</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>人员信息主键id</td>
</tr>
<tr>
<td style="text-align: left;">currPage</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>起始页</td>
</tr>
<tr>
<td style="text-align: left;">pageSize</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>每页条数</td>
</tr>
</tbody>
</table>
<p><strong>请求示例</strong></p>
<pre><code>{
"personnelId" : "00010535bb2b48749ef022e0d03f7699",
"currPage" : "3",
"pageSize" : "10"
}
</code></pre>
<p><strong>返回参数说明</strong> </p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th style="text-align: left;">说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">temperature</td>
<td style="text-align: left;">string</td>
<td style="text-align: left;">温度</td>
</tr>
<tr>
<td style="text-align: left;">create_time</td>
<td style="text-align: left;">string</td>
<td style="text-align: left;">录体温时间</td>
</tr>
<tr>
<td style="text-align: left;">temperatureStatus</td>
<td style="text-align: left;">string</td>
<td style="text-align: left;">是否异常</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
"msg": "查询历史体温信息成功瑞信!",
"code": 0,
"data": {
"total": 24,
"currPage": 3,
"data": [
{
"sourceId": "qj_baqzjj_c5e8f737c0574a7aa69a5989f2802bfc",
"proxyPersonalId": null,
"personnelId": "00010535bb2b48749ef022e0d03f7699",
"createTime": "2020-02-09 23:57:10",
"temperature": 36.4,
"currentCity": null,
"id": "b050ed3ad12f43029a3cc624388cc70b",
"currentProvince": null,
"temperatureStatus": "正常",
"enterTime": null,
"status": "0"
},
{
"sourceId": "qj_baqzjj_c5e8f737c0574a7aa69a5989f2802bfc",
"proxyPersonalId": null,
"personnelId": "00010535bb2b48749ef022e0d03f7699",
"createTime": "2020-02-08 22:46:00",
"temperature": 36.1,
"currentCity": null,
"id": "7c08b33a380e49498df8b7feaaec6f23",
"currentProvince": null,
"temperatureStatus": "正常",
"enterTime": null,
"status": "0"
},
{
"sourceId": "qj_baqzjj_c5e8f737c0574a7aa69a5989f2802bfc",
"proxyPersonalId": null,
"personnelId": "00010535bb2b48749ef022e0d03f7699",
"createTime": "2020-02-08 01:20:33",
"temperature": 36.1,
"currentCity": null,
"id": "1cd2ef3d3b2042f19ce2fd51b2f4f889",
"currentProvince": null,
"temperatureStatus": "正常",
"enterTime": null,
"status": "0"
},
{
"sourceId": "qj_baqzjj_c5e8f737c0574a7aa69a5989f2802bfc",
"proxyPersonalId": null,
"personnelId": "00010535bb2b48749ef022e0d03f7699",
"createTime": "2020-02-07 09:33:23",
"temperature": 36.0,
"currentCity": null,
"id": "42cfe0d4bbc9453ca59ea3e8632bb427",
"currentProvince": null,
"temperatureStatus": "正常",
"enterTime": null,
"status": "0"
}
],
"totalPage": 3,
"pageSize": 10
}
}
</code></pre>
<p><strong>备注</strong> </p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>
<ol>
<li>
<ol>
<li>
</li>
</ol>
</li>
</ol>