37 lines
1003 B
Java
37 lines
1003 B
Java
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<K3KelompokLpjGedungVO> k3KelompokLpjGedung = new HashSet<>();
|
|
|
|
public String getFacillityCheck() {
|
|
return facillityCheck;
|
|
}
|
|
|
|
public void setFacillityCheck(String facillityCheck) {
|
|
this.facillityCheck = facillityCheck;
|
|
}
|
|
|
|
public Set<K3KelompokLpjGedungVO> getK3KelompokLpjGedung() {
|
|
return k3KelompokLpjGedung;
|
|
}
|
|
|
|
public void setK3KelompokLpjGedung(Set<K3KelompokLpjGedungVO> k3KelompokLpjGedung) {
|
|
this.k3KelompokLpjGedung = k3KelompokLpjGedung;
|
|
}
|
|
}
|