Skip to content

Instantly share code, notes, and snippets.

@eldermoraes
Created September 21, 2018 15:52
Show Gist options
  • Save eldermoraes/89352ebe364ecaf7df49740fbc3f5948 to your computer and use it in GitHub Desktop.
Save eldermoraes/89352ebe364ecaf7df49740fbc3f5948 to your computer and use it in GitHub Desktop.
@Entity
public class PlayerRankHistory implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
private Long player;
private Long rank;
private Long points;
private Date date;
public PlayerRankHistory(){
}
#the rest of implementation
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment