mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-06-28 13:16:19 +08:00
🎨 #3367【企业微信】获取审批申请详情接口中假勤组件新增时长支持按天分片信息
This commit is contained in:
parent
43ad965cee
commit
0b9444d948
@ -143,6 +143,8 @@ public class ContentValue implements Serializable {
|
|||||||
@SerializedName("date_range")
|
@SerializedName("date_range")
|
||||||
private DataRange dateRange;
|
private DataRange dateRange;
|
||||||
private Integer type;
|
private Integer type;
|
||||||
|
@SerializedName("slice_info")
|
||||||
|
private SliceInfo sliceInfo;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The type Data range.
|
* The type Data range.
|
||||||
@ -158,6 +160,29 @@ public class ContentValue implements Serializable {
|
|||||||
@SerializedName("new_duration")
|
@SerializedName("new_duration")
|
||||||
private Long 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user