View Javadoc
1   /*
2    *    Copyright 2009-2021 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    *       http://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.awful_table;
17  
18  public class AwfulTable {
19      private Integer customerId;
20      private String firstFirstName;
21      private String secondFirstName;
22      private String thirdFirstName;
23      private String lastName;
24      private String eMail;
25      private Integer id1;
26      private Integer id2;
27      private Integer id5;
28      private Integer id6;
29      private Integer id7;
30      private String emailaddress;
31      private String from;
32      private boolean active;
33      public Integer getCustomerId() {
34          return customerId;
35      }
36      public void setCustomerId(Integer customerId) {
37          this.customerId = customerId;
38      }
39      public String getFirstFirstName() {
40          return firstFirstName;
41      }
42      public void setFirstFirstName(String firstFirstName) {
43          this.firstFirstName = firstFirstName;
44      }
45      public String getSecondFirstName() {
46          return secondFirstName;
47      }
48      public void setSecondFirstName(String secondFirstName) {
49          this.secondFirstName = secondFirstName;
50      }
51      public String getThirdFirstName() {
52          return thirdFirstName;
53      }
54      public void setThirdFirstName(String thirdFirstName) {
55          this.thirdFirstName = thirdFirstName;
56      }
57      public String getLastName() {
58          return lastName;
59      }
60      public void setLastName(String lastName) {
61          this.lastName = lastName;
62      }
63      public String geteMail() {
64          return eMail;
65      }
66      public void seteMail(String eMail) {
67          this.eMail = eMail;
68      }
69      public Integer getId1() {
70          return id1;
71      }
72      public void setId1(Integer id1) {
73          this.id1 = id1;
74      }
75      public Integer getId2() {
76          return id2;
77      }
78      public void setId2(Integer id2) {
79          this.id2 = id2;
80      }
81      public Integer getId5() {
82          return id5;
83      }
84      public void setId5(Integer id5) {
85          this.id5 = id5;
86      }
87      public Integer getId6() {
88          return id6;
89      }
90      public void setId6(Integer id6) {
91          this.id6 = id6;
92      }
93      public Integer getId7() {
94          return id7;
95      }
96      public void setId7(Integer id7) {
97          this.id7 = id7;
98      }
99      public String getEmailaddress() {
100         return emailaddress;
101     }
102     public void setEmailaddress(String emailaddress) {
103         this.emailaddress = emailaddress;
104     }
105     public String getFrom() {
106         return from;
107     }
108     public void setFrom(String from) {
109         this.from = from;
110     }
111     public boolean isActive() {
112         return active;
113     }
114     public void setActive(boolean active) {
115         this.active = active;
116     }
117 
118 }