6.1 查询门禁记录

简要描述

  • 查询门禁记录列表

请求URL

  • http://\{uri}/facility/attendance/list

请求方式

  • GET

参数

参数名

必选

类型

说明

projectId

Long

项目ID

identityCard

String

身份证

name

String

姓名

attenDevice

String

考勤设备

attenTime

Date

考勤时间

beginTime

Date

开始时间

endTime

Date

结束时间

返回示例

{
  "total": 161,
  "rows": \[
    \{
      "createTime": "2023-02-22 14:55:33",
      "updateTime": null,
      "remark": null,
      "attenId": "166604382261301248",
      "projectId": 164443836015530000,
      "identityCard": "13230219760622321X",
      "name": "王红刚",
      "similar": "84",
      "attenImage": "http://153.99.44.234:22601/statics/2023/02/22/99b0c84d-3ba4-4739-9290-8b21bc8492c9.jpeg",
      "attenDevice": "32306",
      "attenTime": "2023-02-22",
      "temperature": 0,
      "beginTime": null,
      "endTime": null
    \}, 
    \{...\}
    \],
  "code": 200,
  "msg": "查询成功"
}


返回基本参数说明

参数名

类型

说明

total

Long

总记录数

rows

List

列表数据

code

int

消息状态码

msg

String

消息内容

返回参数说明

参数名

类型

说明

attenId

Long

考勤id

projectId

Long

项目ID

identityCard

string

身份证

name

string

姓名

similar

string

脸部相似度

attenImage

string

考勤照片

attenDevice

string

考勤设备

attenTime

Date

考勤时间

体温

BigDecimal

temperature

delFlag

string

删除标志(0代表存在 2代表删除)

beginTime

Date

开始时间

endTime

Date

结束时间

备注

  • 更多返回错误代码请看首页的错误代码描述

  • 无标签