文档
测试

消防主机打印记录

POST
/api/printing/record

接口描述

获取消防主机打印记录

请求头

参数名
类型
描述
必填
x-access-token
String
登录后的token
必填

请求参数

参数名
类型
描述
必填
page
int
分页号
必填
size
int
每页请求条数
必填
beginTime
long
开始时间,筛选条件
必填
endTime
long
结束时间,筛选条件
必填
action
int
消防主机动作,筛选条件
必填

响应参数

参数名
类型
描述
必填
code
int
示例:200
必填
message
string
示例:请求成功
必填
data
object
数据字典
必填
total
int
示例:10
必填
page
int
示例:1
必填
size
int
示例:10
必填
historys
array
数据列表
必填
title
string
示例:检查消火栓门
必填
id
string
示例:7fa07447e8ce474c
必填
createTime
int
示例:1600144557
必填
action
int
示例:1
必填
number
String
编号
必填

说明 / 示例

# 1,请求示例 {"page":1,"size":10,"status":1,"beginTime":1600056773,"action":1,"endTime":1600056773} # 2,返回示例 { "code": 200, "message": "请求成功", "data": { "total": 10, "page": 1, "size": 10, "historys": [ { "title": "检查消火栓门", "id": "7fa07447e8ce474c", "createTime": 1600144557, "action": 1, "number":90878 } ] } }