AwfulTable.java

/*
 *    Copyright 2009-2025 the original author or authors.
 *
 *    Licensed under the Apache License, Version 2.0 (the "License");
 *    you may not use this file except in compliance with the License.
 *    You may obtain a copy of the License at
 *
 *       https://www.apache.org/licenses/LICENSE-2.0
 *
 *    Unless required by applicable law or agreed to in writing, software
 *    distributed under the License is distributed on an "AS IS" BASIS,
 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *    See the License for the specific language governing permissions and
 *    limitations under the License.
 */
package org.apache.ibatis.submitted.awful_table;

public class AwfulTable {
  private Integer customerId;
  private String firstFirstName;
  private String secondFirstName;
  private String thirdFirstName;
  private String lastName;
  private String eMail;
  private Integer id1;
  private Integer id2;
  private Integer id5;
  private Integer id6;
  private Integer id7;
  private String emailaddress;
  private String from;
  private boolean active;

  public Integer getCustomerId() {
    return customerId;
  }

  public void setCustomerId(Integer customerId) {
    this.customerId = customerId;
  }

  public String getFirstFirstName() {
    return firstFirstName;
  }

  public void setFirstFirstName(String firstFirstName) {
    this.firstFirstName = firstFirstName;
  }

  public String getSecondFirstName() {
    return secondFirstName;
  }

  public void setSecondFirstName(String secondFirstName) {
    this.secondFirstName = secondFirstName;
  }

  public String getThirdFirstName() {
    return thirdFirstName;
  }

  public void setThirdFirstName(String thirdFirstName) {
    this.thirdFirstName = thirdFirstName;
  }

  public String getLastName() {
    return lastName;
  }

  public void setLastName(String lastName) {
    this.lastName = lastName;
  }

  public String geteMail() {
    return eMail;
  }

  public void seteMail(String eMail) {
    this.eMail = eMail;
  }

  public Integer getId1() {
    return id1;
  }

  public void setId1(Integer id1) {
    this.id1 = id1;
  }

  public Integer getId2() {
    return id2;
  }

  public void setId2(Integer id2) {
    this.id2 = id2;
  }

  public Integer getId5() {
    return id5;
  }

  public void setId5(Integer id5) {
    this.id5 = id5;
  }

  public Integer getId6() {
    return id6;
  }

  public void setId6(Integer id6) {
    this.id6 = id6;
  }

  public Integer getId7() {
    return id7;
  }

  public void setId7(Integer id7) {
    this.id7 = id7;
  }

  public String getEmailaddress() {
    return emailaddress;
  }

  public void setEmailaddress(String emailaddress) {
    this.emailaddress = emailaddress;
  }

  public String getFrom() {
    return from;
  }

  public void setFrom(String from) {
    this.from = from;
  }

  public boolean isActive() {
    return active;
  }

  public void setActive(boolean active) {
    this.active = active;
  }

}