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

This commit is contained in:
msgpo 2024-09-10 14:48:02 +08:00 committed by GitHub
parent 43ad965cee
commit 0b9444d948
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -143,6 +143,8 @@ public class ContentValue implements Serializable {
@SerializedName("date_range")
private DataRange dateRange;
private Integer type;
@SerializedName("slice_info")
private SliceInfo sliceInfo;
/**
* The type Data range.
@ -158,6 +160,29 @@ public class ContentValue 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;
}
}
}
/**