Skip to content

Instantly share code, notes, and snippets.

@finsterthecat
Created January 5, 2018 22:34
Show Gist options
  • Save finsterthecat/059bdbc44aa2f84cbc4b3cac8accc9c5 to your computer and use it in GitHub Desktop.
Save finsterthecat/059bdbc44aa2f84cbc4b3cac8accc9c5 to your computer and use it in GitHub Desktop.
@Entity
public class Hero {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
private String name;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment