Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save dalmat36/a480ccb901a367f6fb2e to your computer and use it in GitHub Desktop.

Select an option

Save dalmat36/a480ccb901a367f6fb2e to your computer and use it in GitHub Desktop.
package hibernate;
public class User {
private int id;
private String name;
private int total;
private int goal;
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;
}
public int getTotal() {
return total;
}
public void setTotal(int total) {
this.total = total;
}
public int getGoal() {
return goal;
}
public void setGoal(int goal) {
this.goal = goal;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment