package io.trygvis.persistence.test; import javax.persistence.Id; public class ParentEntity { @Id public Long id; private Integer age; public ParentEntity(Long id) { this.id = id; } public Integer getAge() { return age; } public void setAge(Integer age) { this.age = age; } }