文档
测试

Daily attendance records

POST
/qgy/attendance/signs

接口描述

Check the attendance records of all people under the current user one day

Request parameters

参数名
类型
描述
必填
date
String
date yyyy-MM-dd
必填
userId
String
Current user ID
必填
index
Integer
Current page number
可选
length
Integer
Number of pages per page
可选

Return sample

``` { "result": 1, "msg": "successful operation!", "code": "QG_SUS1000", "data": { "number": 10, "count": 2, "attendance": [ { "guid": "2019-08-175E11A124AA1B402DAAF16738A3AE1DCB", "name": "Ding Jiale", "amSignIn": "2019-08-17 10:00:00", "amSignOut": null, "pmSignIn": null, "pmSignOut": null, "nmSignIn": null, "nmSignOut": null }, { "guid": "2019-08-178A5E58DAF9114F53B396F9EBB2C6E53C", "name": "Ding Xiaogui", "amSignIn": null, "amSignOut": null, "pmSignIn": null, "pmSignOut": null, "nmSignIn": null, "nmSignOut": null } ], "statistics": [ 2, 1, 0, 0, 0, 0, 0 ] } } ```