Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0b9444d

Browse filesBrowse files
authored
🎨 #3367【企业微信】获取审批申请详情接口中假勤组件新增时长支持按天分片信息
1 parent 43ad965 commit 0b9444d
Copy full SHA for 0b9444d

File tree

Expand file treeCollapse file tree

1 file changed

+25
-0
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+25
-0
lines changed

‎weixin-java-cp/src/main/java/me/chanjar/weixin/cp/bean/oa/applydata/ContentValue.java

Copy file name to clipboardExpand all lines: weixin-java-cp/src/main/java/me/chanjar/weixin/cp/bean/oa/applydata/ContentValue.java
+25Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,8 @@ public static class Attendance implements Serializable {
143143
@SerializedName("date_range")
144144
private DataRange dateRange;
145145
private Integer type;
146+
@SerializedName("slice_info")
147+
private SliceInfo sliceInfo;
146148

147149
/**
148150
* The type Data range.
@@ -158,6 +160,29 @@ public static class DataRange implements Serializable {
158160
@SerializedName("new_duration")
159161
private Long duration;
160162
}
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+
161186
}
162187

163188
/**

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.