钉钉考勤

This commit is contained in:
张松
2025-12-01 14:39:43 +08:00
parent 435609ad76
commit 06c216cdbe

View File

@@ -34,6 +34,10 @@ public class DingAttendanceStatsVO {
* 用户是否有有效考勤数据 * 用户是否有有效考勤数据
*/ */
private boolean isActive; private boolean isActive;
/**
* 旷工天数
*/
private String absenceDays;
private JSONArray report; private JSONArray report;
@@ -57,6 +61,10 @@ public class DingAttendanceStatsVO {
case "应出勤天数": case "应出勤天数":
this.shouldAttendDays = val; this.shouldAttendDays = val;
break; break;
case "旷工天数":
this.absenceDays = val;
break;
} }
} }