View Javadoc
1   /*
2    *    Copyright 2009-2023 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.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  
34    public Integer getCustomerId() {
35      return customerId;
36    }
37  
38    public void setCustomerId(Integer customerId) {
39      this.customerId = customerId;
40    }
41  
42    public String getFirstFirstName() {
43      return firstFirstName;
44    }
45  
46    public void setFirstFirstName(String firstFirstName) {
47      this.firstFirstName = firstFirstName;
48    }
49  
50    public String getSecondFirstName() {
51      return secondFirstName;
52    }
53  
54    public void setSecondFirstName(String secondFirstName) {
55      this.secondFirstName = secondFirstName;
56    }
57  
58    public String getThirdFirstName() {
59      return thirdFirstName;
60    }
61  
62    public void setThirdFirstName(String thirdFirstName) {
63      this.thirdFirstName = thirdFirstName;
64    }
65  
66    public String getLastName() {
67      return lastName;
68    }
69  
70    public void setLastName(String lastName) {
71      this.lastName = lastName;
72    }
73  
74    public String geteMail() {
75      return eMail;
76    }
77  
78    public void seteMail(String eMail) {
79      this.eMail = eMail;
80    }
81  
82    public Integer getId1() {
83      return id1;
84    }
85  
86    public void setId1(Integer id1) {
87      this.id1 = id1;
88    }
89  
90    public Integer getId2() {
91      return id2;
92    }
93  
94    public void setId2(Integer id2) {
95      this.id2 = id2;
96    }
97  
98    public Integer getId5() {
99      return id5;
100   }
101 
102   public void setId5(Integer id5) {
103     this.id5 = id5;
104   }
105 
106   public Integer getId6() {
107     return id6;
108   }
109 
110   public void setId6(Integer id6) {
111     this.id6 = id6;
112   }
113 
114   public Integer getId7() {
115     return id7;
116   }
117 
118   public void setId7(Integer id7) {
119     this.id7 = id7;
120   }
121 
122   public String getEmailaddress() {
123     return emailaddress;
124   }
125 
126   public void setEmailaddress(String emailaddress) {
127     this.emailaddress = emailaddress;
128   }
129 
130   public String getFrom() {
131     return from;
132   }
133 
134   public void setFrom(String from) {
135     this.from = from;
136   }
137 
138   public boolean isActive() {
139     return active;
140   }
141 
142   public void setActive(boolean active) {
143     this.active = active;
144   }
145 
146 }