View Javadoc
1   /*
2    *    Copyright 2009-2022 the original author or authors.
3    *
4    *    Licensed under the Apache License, Version 2.0 (the "License");
5    *    you may not use this file except in compliance with the License.
6    *    You may obtain a copy of the License at
7    *
8    *       https://www.apache.org/licenses/LICENSE-2.0
9    *
10   *    Unless required by applicable law or agreed to in writing, software
11   *    distributed under the License is distributed on an "AS IS" BASIS,
12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   *    See the License for the specific language governing permissions and
14   *    limitations under the License.
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  }