Skip to content

Instantly share code, notes, and snippets.

@dagvadorj
Created January 19, 2013 10:58
Show Gist options
  • Save dagvadorj/4572015 to your computer and use it in GitHub Desktop.
Save dagvadorj/4572015 to your computer and use it in GitHub Desktop.
@Entity
public class EmploymentRevision extends RevisionModel implements Serializable {
private static final long serialVersionUID = 1L;
private Double salary;
public Double getSalary() {
return salary;
}
public void setSalary(Double salary) {
this.salary = salary;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment