com.jpattern.orm.test.script.TempTable Maven / Gradle / Ivy
The newest version!
package com.jpattern.orm.test.script;
/**
*
* @author Francesco Cina
*
* 02/lug/2011
*/
public class TempTable {
private int id;
private String name;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy