File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed
blackbox-test/src/main/java/org/example/customer Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change
1
+ package org .example .customer ;
2
+
3
+ import io .avaje .jsonb .Json ;
4
+
5
+ import java .time .Instant ;
6
+
7
+ @ Json
8
+ public class IgnoreField2 {
9
+
10
+ @ Json .Ignore
11
+ private String middleName ;
12
+ private Instant time ;
13
+ private int num ;
14
+
15
+ public String getMiddleName () {
16
+ return middleName ;
17
+ }
18
+
19
+ public IgnoreField2 setMiddleName (String middleName ) {
20
+ this .middleName = middleName ;
21
+ return this ;
22
+ }
23
+
24
+ public Instant getTime () {
25
+ return time ;
26
+ }
27
+
28
+ public IgnoreField2 setTime (Instant time ) {
29
+ this .time = time ;
30
+ return this ;
31
+ }
32
+
33
+ public int getNum () {
34
+ return num ;
35
+ }
36
+
37
+ public IgnoreField2 setNum (int num ) {
38
+ this .num = num ;
39
+ return this ;
40
+ }
41
+ }
You can’t perform that action at this time.
0 commit comments