1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.apache.ibatis.submitted.ancestor_ref;
17
18 public class Author {
19 private Integer id;
20 private String name;
21 private Blog blog;
22 private Reputation reputation;
23
24 public Integer getId() {
25 return id;
26 }
27
28 public void setId(Integer id) {
29 this.id = id;
30 }
31
32 public String getName() {
33 return name;
34 }
35
36 public void setName(String name) {
37 this.name = name;
38 }
39
40 public Blog getBlog() {
41 return blog;
42 }
43
44 public void setBlog(Blog blog) {
45 this.blog = blog;
46 }
47
48 public Reputation getReputation() {
49 return reputation;
50 }
51
52 public void setReputation(Reputation reputation) {
53 this.reputation = reputation;
54 }
55 }