File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed
weixin-java-cp/src/main/java/me/chanjar/weixin/cp/bean/oa/applydata Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,9 @@ public class ContentValue implements Serializable {
35
35
36
36
private List <ContentValue .Child > children ;
37
37
38
+ @ SerializedName ("related_approval" )
39
+ private List <RelatedApproval > relatedApproval ;
40
+
38
41
private Attendance attendance ;
39
42
40
43
private Vacation vacation ;
@@ -124,4 +127,43 @@ public static class Vacation implements Serializable {
124
127
private Attendance attendance ;
125
128
}
126
129
130
+ /**
131
+ * 关联审批单控件
132
+ */
133
+ @ Data
134
+ public static class RelatedApproval implements Serializable {
135
+ private static final long serialVersionUID = 8629601623267510738L ;
136
+ /**
137
+ *关联审批单的模板名
138
+ */
139
+ @ SerializedName ("template_names" )
140
+ private List <TemplateName > templateNames ;
141
+ /**
142
+ * 关联审批单的状态
143
+ */
144
+ @ SerializedName ("sp_status" )
145
+ private Integer spStatus ;
146
+ /**
147
+ * 关联审批单的提单者
148
+ */
149
+ private String name ;
150
+ /**
151
+ * 关联审批单的提单时间
152
+ */
153
+ @ SerializedName ("create_time" )
154
+ private Long createTime ;
155
+ /**
156
+ * 关联审批单的审批单号
157
+ */
158
+ @ SerializedName ("sp_no" )
159
+ private String spNo ;
160
+ }
161
+
162
+ @ Data
163
+ public static class TemplateName implements Serializable {
164
+ private static final long serialVersionUID = 3152481506054355937L ;
165
+ private String text ;
166
+ private String lang ;
167
+ }
168
+
127
169
}
You can’t perform that action at this time.
0 commit comments