Skip to content

Commit

Permalink
🎨 #3367【企业微信】获取审批申请详情接口中假勤组件新增时长支持按天分片信息
Browse files Browse the repository at this point in the history
  • Loading branch information
MsThink authored Sep 10, 2024
1 parent 43ad965 commit 0b9444d
Showing 1 changed file with 25 additions and 0 deletions.
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

0 comments on commit 0b9444d

Please sign in to comment.