@Entity
public class Tranchenmodell {
@Id
private Long id;
@OneToMany(mappedBy="tranchenmodell", cascade = ALL, fetch=LAZY, orphanRemoval=true)
private List<Tranche> tranchen = new ArrayList<>();
@OneToOne(fetch=LAZY)
private Preisregelung preisregelung;
}