1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.apache.ibatis.submitted.empty_row;
17
18 import java.util.List;
19
20 public class Parent {
21 private Integer id;
22 private String col1;
23 private String col2;
24
25 private Child child;
26 private List<Child> children;
27 private List<Pet> pets;
28
29 public Integer getId() {
30 return id;
31 }
32
33 public void setId(Integer id) {
34 this.id = id;
35 }
36
37 public String getCol1() {
38 return col1;
39 }
40
41 public void setCol1(String col1) {
42 this.col1 = col1;
43 }
44
45 public String getCol2() {
46 return col2;
47 }
48
49 public void setCol2(String col2) {
50 this.col2 = col2;
51 }
52
53 public Child getChild() {
54 return child;
55 }
56
57 public void setChild(Child child) {
58 this.child = child;
59 }
60
61 public List<Child> getChildren() {
62 return children;
63 }
64
65 public void setChildren(List<Child> children) {
66 this.children = children;
67 }
68
69 public List<Pet> getPets() {
70 return pets;
71 }
72
73 public void setPets(List<Pet> pets) {
74 this.pets = pets;
75 }
76 }