1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.apache.ibatis.submitted.force_flush_on_select;
17
18 import java.io.Serializable;
19
20 public class Person implements Serializable {
21 private Integer id;
22 private String firstName;
23 private String lastName;
24 public String getFirstName() {
25 return firstName;
26 }
27 public void setFirstName(String firstName) {
28 this.firstName = firstName;
29 }
30 public String getLastName() {
31 return lastName;
32 }
33 public void setLastName(String lastName) {
34 this.lastName = lastName;
35 }
36 public Integer getId() {
37 return id;
38 }
39 public void setId(Integer id) {
40 this.id = id;
41 }
42 }