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.column_prefix;
17  
18  import java.util.List;
19  
20  public class Person {
21    private Integer id;
22  
23    private String name;
24  
25    private Address billingAddress;
26  
27    private Address shippingAddress;
28  
29    private Room room;
30  
31    private List<Pet> pets;
32  
33    public Integer getId() {
34      return id;
35    }
36  
37    public void setId(Integer id) {
38      this.id = id;
39    }
40  
41    public String getName() {
42      return name;
43    }
44  
45    public void setName(String name) {
46      this.name = name;
47    }
48  
49    public Address getBillingAddress() {
50      return billingAddress;
51    }
52  
53    public void setBillingAddress(Address billingAddress) {
54      this.billingAddress = billingAddress;
55    }
56  
57    public Address getShippingAddress() {
58      return shippingAddress;
59    }
60  
61    public void setShippingAddress(Address shippingAddress) {
62      this.shippingAddress = shippingAddress;
63    }
64  
65    public Room getRoom() {
66      return room;
67    }
68  
69    public void setRoom(Room room) {
70      this.room = room;
71    }
72  
73    public List<Pet> getPets() {
74      return pets;
75    }
76  
77    public void setPets(List<Pet> pets) {
78      this.pets = pets;
79    }
80  }