com.jmodel.generated.AnotherTable Maven / Gradle / Ivy
/* This file was generated by a tool. Any modification will be overwritten during the next build cycle. */
package com.jmodel.generated;
import java.io.Serializable;
public class AnotherTable implements Serializable {
private String anotherPkField1;
private String anotherPkField2;
private String anotherNonPkField;
public String getAnotherPkField1() {
return anotherPkField1;
}
public void setAnotherPkField1(String anotherPkField1) {
this.anotherPkField1 = anotherPkField1;
}
public String getAnotherPkField2() {
return anotherPkField2;
}
public void setAnotherPkField2(String anotherPkField2) {
this.anotherPkField2 = anotherPkField2;
}
public String getAnotherNonPkField() {
return anotherNonPkField;
}
public void setAnotherNonPkField(String anotherNonPkField) {
this.anotherNonPkField = anotherNonPkField;
}
}