1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.apache.ibatis.submitted.parent_childs;
17
18 import java.util.List;
19
20 public class Parent {
21
22 private int id;
23 private String name;
24 private String surName;
25 private List<Child> childs;
26
27 public int getId() {
28 return id;
29 }
30
31 public void setId(int id) {
32 this.id = id;
33 }
34
35 public String getName() {
36 return name;
37 }
38
39 public void setName(String name) {
40 this.name = name;
41 }
42
43 public String getSurName() {
44 return surName;
45 }
46
47 public void setSurName(String surName) {
48 this.surName = surName;
49 }
50
51 public List<Child> getChilds() {
52 return childs;
53 }
54
55 public void setChilds(List<Child> childs) {
56 this.childs = childs;
57 }
58
59 }