File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed
weixin-java-cp/src/main/java/me/chanjar/weixin/cp/bean/oa/applydata Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,8 @@ public static class Attendance implements Serializable {
143
143
@ SerializedName ("date_range" )
144
144
private DataRange dateRange ;
145
145
private Integer type ;
146
+ @ SerializedName ("slice_info" )
147
+ private SliceInfo sliceInfo ;
146
148
147
149
/**
148
150
* The type Data range.
@@ -158,6 +160,29 @@ public static class DataRange implements Serializable {
158
160
@ SerializedName ("new_duration" )
159
161
private Long duration ;
160
162
}
163
+
164
+ /**
165
+ * The type slice_info
166
+ */
167
+ @ Data
168
+ public static class SliceInfo implements Serializable {
169
+ private static final long serialVersionUID = 4369560551634923348L ;
170
+ @ SerializedName ("day_items" )
171
+ private List <DayItems > dayItems ;
172
+ private Long duration ;
173
+ private Integer state ;
174
+
175
+ /**
176
+ * The type day_items
177
+ */
178
+ @ Data
179
+ public static class DayItems implements Serializable {
180
+ private static final long serialVersionUID = -7076615961077782776L ;
181
+ private Long daytime ;
182
+ private Long duration ;
183
+ }
184
+ }
185
+
161
186
}
162
187
163
188
/**
You can’t perform that action at this time.
0 commit comments