文档
测试

日考勤记录

POST
/qgy/attendance/signs

接口描述

查看当前用户下所有人员某一天的考勤记录

请求参数

参数名
类型
描述
必填
date
String
日期 yyyy-MM-dd
必填
userId
String
当前用户
必填
index
Integer
当前页码
可选
length
Integer
每页个数
可选

返回示例

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