Skip to content

Commit 6bba793

Browse files
authored
🎨 修改增加的字段对应的数据类型
1 parent 123bef0 commit 6bba793

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

weixin-java-cp/src/main/java/me/chanjar/weixin/cp/bean/oa/WxCpCheckinData.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,23 +101,23 @@ public class WxCpCheckinData implements Serializable {
101101
* 标准打卡时间,指此次打卡时间对应的标准上班时间或标准下班时间
102102
*/
103103
@SerializedName("sch_checkin_time")
104-
private String schCheckinTime;
104+
private Long schCheckinTime;
105105

106106
/**
107107
* 规则id,表示打卡记录所属规则的id
108108
*/
109109
@SerializedName("groupid")
110-
private String groupId;
110+
private Integer groupId;
111111

112112
/**
113113
* 班次id,表示打卡记录所属规则中,所属班次的id
114114
*/
115115
@SerializedName("schedule_id")
116-
private String scheduleId;
116+
private Integer scheduleId;
117117

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

0 commit comments

Comments
 (0)