将生物识别手指设备的数据保存到数据库 - 考勤系统

Save data from biometric finger device into database - attendance system

我想为办公室开发考勤系统,员工使用指纹进行考勤,我需要购买生物识别设备,并且我只想将考勤数据保存在我的云数据库中。没有其他人应该能够访问该数据。如何通过考勤捕获打卡的用户并将他们的数据保存在数据库中。

哪个设备适合这个?是否有任何生物识别设备可以在记录出勤时向我的 url 回拨用户详细信息?

CAMS supports the Web API for the the biometric machines which can be integrated with a website or any internet web application. It provides RESTful APIs and Callback API for various operations with biometric machines. You can get the detailed information from biometric Web API

根据 CAMS,URL 应与机器一起提交。一旦关联了URL,无论何时注册考勤,都会自动调用提交的URL。现在用户可以在他们的数据库中维护记录并使用它们来生成报告。

只要在 POST

中使用以下参数注册新出席者,就会调用 URL
  • stgid - 服务标签id,表示机器id,
  • userid - 数字用户 id
  • att_time - 出席日期和时间的时间戳
  • att_type - i/o ==> i 签入,o 签出

URL在处理考勤记录后应该在响应中return"ok"。如果 "ok" 没有被 return 编辑,那么 URL 将被一次又一次地调用,并使用相同的考勤记录。如果 URL 的网络服务器宕机,考勤记录将尝试每 30 秒到达 URL。