🎨 #2762 【企业微信】审批详情增加缺少的控件类型

This commit is contained in:
Xianhui Guo 2022-08-10 22:45:48 +08:00 committed by GitHub
parent cfa92390f2
commit cc8901598d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,6 +45,9 @@ public class ContentValue implements Serializable {
@SerializedName("date_range")
private Attendance.DataRange dateRange;
@SerializedName("punch_correction")
private PunchCorrection punchCorrection;
@Data
public static class Date implements Serializable {
private static final long serialVersionUID = -6181554080062231138L;
@ -169,4 +172,11 @@ public class ContentValue implements Serializable {
private String lang;
}
@Data
public static class PunchCorrection implements Serializable {
private static final long serialVersionUID = 2120523160034749170L;
private String state;
private Long time;
}
}