package com.jasamedika.medifirst2000.vo; import java.util.HashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.FetchType; import javax.persistence.OneToMany; import com.jasamedika.medifirst2000.base.vo.BaseMasterVO; import com.jasamedika.medifirst2000.helper.Caption; public class K3FacillityCheckVO extends BaseMasterVO{ @Caption(value="Facillity Check") private String facillityCheck; @OneToMany(cascade=CascadeType.ALL, fetch=FetchType.LAZY, mappedBy="k3FacillityCheck") private Set k3KelompokLpjGedung = new HashSet<>(); public String getFacillityCheck() { return facillityCheck; } public void setFacillityCheck(String facillityCheck) { this.facillityCheck = facillityCheck; } public Set getK3KelompokLpjGedung() { return k3KelompokLpjGedung; } public void setK3KelompokLpjGedung(Set k3KelompokLpjGedung) { this.k3KelompokLpjGedung = k3KelompokLpjGedung; } }