Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

【企业微信】获取审批申请详情接口中假勤组件新增时长支持按天分片信息 #3367

Merged
merged 1 commit into from
Sep 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,8 @@ public static class Attendance implements Serializable {
@SerializedName("date_range")
private DataRange dateRange;
private Integer type;
@SerializedName("slice_info")
private SliceInfo sliceInfo;

/**
* The type Data range.
Expand All @@ -158,6 +160,29 @@ public static class DataRange implements Serializable {
@SerializedName("new_duration")
private Long duration;
}

/**
* The type slice_info
*/
@Data
public static class SliceInfo implements Serializable {
private static final long serialVersionUID = 4369560551634923348L;
@SerializedName("day_items")
private List<DayItems> dayItems;
private Long duration;
private Integer state;

/**
* The type day_items
*/
@Data
public static class DayItems implements Serializable {
private static final long serialVersionUID = -7076615961077782776L;
private Long daytime;
private Long duration;
}
}

}

/**
Expand Down