File tree Expand file tree Collapse file tree 1 file changed +30
-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 +30
-0
lines changed Original file line number Diff line number Diff line change 5
5
import lombok .experimental .Accessors ;
6
6
7
7
import java .io .Serializable ;
8
+ import java .math .BigDecimal ;
8
9
import java .util .List ;
9
10
10
11
/**
@@ -50,6 +51,10 @@ public class ContentValue implements Serializable {
50
51
@ SerializedName ("punch_correction" )
51
52
private PunchCorrection punchCorrection ;
52
53
54
+ private Location location ;
55
+
56
+ private Formula formula ;
57
+
53
58
/**
54
59
* The type Date.
55
60
*/
@@ -215,6 +220,31 @@ public static class PunchCorrection implements Serializable {
215
220
private static final long serialVersionUID = 2120523160034749170L ;
216
221
private String state ;
217
222
private Long time ;
223
+ private Integer version ;
224
+ @ SerializedName ("daymonthyear" )
225
+ private Long dayMonthYear ;
226
+ }
227
+
228
+ /**
229
+ * The type Location
230
+ */
231
+ @ Data
232
+ public static class Location implements Serializable {
233
+ private static final long serialVersionUID = 2480012159725572839L ;
234
+ private BigDecimal latitude ;
235
+ private BigDecimal longitude ;
236
+ private String title ;
237
+ private String address ;
238
+ private Long time ;
239
+ }
240
+
241
+ /**
242
+ * The type Formula
243
+ */
244
+ @ Data
245
+ public static class Formula implements Serializable {
246
+ private static final long serialVersionUID = 816968197271971247L ;
247
+ private String value ;
218
248
}
219
249
220
250
}
You can’t perform that action at this time.
0 commit comments