追溯系统数据对接接口说明
    • 获取操作员列表
      GET
    • 获取医生列表
      GET
    • 获取设备列表
      GET
    • 根据洗消编号获取洗消记录
      GET
    • 根据内镜编号获取设备信息
      GET
    • 获取最后一次洗消记录
      GET
    • 写回洗消记录
      POST
    • 获取消毒液设备及检测记录
      GET
    • 获取消毒液检测记录
      GET
    • 获取检测记录图片列表
      GET
    • 根据更换记录获取消毒使用记录
      GET

      获取消毒液检测记录

      GET
      http://127.0.0.1:3377/data/v1/liquidDetectionRecord/{deviceid}
      根据设备ID获取指定消毒液设备的最近10次检测与更换记录,包括检测时间、结果、操作员等信息。

      请求参数

      Path 参数

      请求示例代码

      Shell
      JavaScript
      Java
      Swift
      Go
      PHP
      Python
      HTTP
      C
      C#
      Objective-C
      Ruby
      OCaml
      Dart
      R
      请求示例请求示例
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET 'http://127.0.0.1:3377/data/v1/liquidDetectionRecord/1'

      返回响应

      🟢200成功
      application/json
      Body

      示例
      {
          "liquid_detection_record": [
              {
                  "conclusion": "合格",
                  "date": "2025-10-07T16:18:42+08:00",
                  "deviceid": 1,
                  "id": 7,
                  "limit_number": 100,
                  "liquid_type": "过氧乙酸",
                  "operator": "崔祥银",
                  "operator_info": "",
                  "operator_type": "常规检查",
                  "usage_count": 95,
                  "validity_period": 14
              },
              {
                  "conclusion": "合格",
                  "date": "2025-09-28T16:42:00+08:00",
                  "deviceid": 1,
                  "id": 6,
                  "limit_number": 100,
                  "liquid_type": "过氧乙酸",
                  "operator": "何翠平",
                  "operator_info": "",
                  "operator_type": "更换",
                  "usage_count": 95,
                  "validity_period": 14
              },
              {
                  "conclusion": "合格",
                  "date": "2025-09-17T19:37:17+08:00",
                  "deviceid": 1,
                  "id": 4,
                  "limit_number": 100,
                  "liquid_type": "过氧乙酸",
                  "operator": "何翠平",
                  "operator_info": "",
                  "operator_type": "常规检查",
                  "usage_count": 100,
                  "validity_period": 14
              },
              {
                  "conclusion": "合格",
                  "date": "2025-09-17T14:37:59+08:00",
                  "deviceid": 1,
                  "id": 2,
                  "limit_number": 100,
                  "liquid_type": "过氧乙酸",
                  "operator": "何翠平",
                  "operator_info": "",
                  "operator_type": "更换",
                  "usage_count": 100,
                  "validity_period": 14
              }
          ],
          "success": true
      }
      修改于 2025-10-11 08:23:53
      上一页
      获取消毒液设备及检测记录
      下一页
      获取检测记录图片列表
      Built with