Skip to content

Commit

Permalink
🎨 #2311 【企业微信】企业微信打卡数据接口增加部分缺失字段
Browse files Browse the repository at this point in the history
  • Loading branch information
Dream2Land authored Sep 10, 2021
1 parent ea31b7b commit ba23afd
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,28 @@ public class WxCpCheckinData implements Serializable {
*/
@SerializedName("deviceid")
private String deviceId;

/**
* 标准打卡时间,指此次打卡时间对应的标准上班时间或标准下班时间
*/
@SerializedName("sch_checkin_time")
private String schCheckinTime;

/**
* 规则id,表示打卡记录所属规则的id
*/
@SerializedName("groupid")
private String groupId;

/**
* 班次id,表示打卡记录所属规则中,所属班次的id
*/
@SerializedName("schedule_id")
private String scheduleId;

/**
* 时段id,表示打卡记录所属规则中,某一班次中的某一时段的id,如上下班时间为9:00-12:00、13:00-18:00的班次中,9:00-12:00为其中一组时段
*/
@SerializedName("timeline_id")
private String timelineId;
}

0 comments on commit ba23afd

Please sign in to comment.