2021-01-07 11:34:56 +07:00

111 lines
2.2 KiB
Java

package com.jasamedika.medifirst2000.vo;
import javax.persistence.FetchType;
import javax.persistence.ManyToOne;
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
import com.jasamedika.medifirst2000.helper.Caption;
public class DetailHVAVO extends BaseTransactionVO{
@ManyToOne(fetch=FetchType.LAZY)
@Caption(value="Object HVA")
private HVAVO hva;
@Caption(value="Event")
private String event;
@Caption(value="Probability")
private Integer probability;
@Caption(value="Human Impact")
private Integer humanImpact;
@Caption(value="Property Impact")
private Integer propertyImpact;
@Caption(value="Business Impact")
private Integer businessImpact;
@Caption(value="Preparedness")
private Integer preparedness;
@Caption(value="Internal Response")
private Integer internalResponse;
@Caption(value="External Response")
private Integer externalResponse;
public HVAVO getHva() {
return hva;
}
public void setHva(HVAVO hva) {
this.hva = hva;
}
public String getEvent() {
return event;
}
public void setEvent(String event) {
this.event = event;
}
public Integer getProbability() {
return probability;
}
public void setProbability(Integer probability) {
this.probability = probability;
}
public Integer getHumanImpact() {
return humanImpact;
}
public void setHumanImpact(Integer humanImpact) {
this.humanImpact = humanImpact;
}
public Integer getPropertyImpact() {
return propertyImpact;
}
public void setPropertyImpact(Integer propertyImpact) {
this.propertyImpact = propertyImpact;
}
public Integer getBusinessImpact() {
return businessImpact;
}
public void setBusinessImpact(Integer businessImpact) {
this.businessImpact = businessImpact;
}
public Integer getPreparedness() {
return preparedness;
}
public void setPreparedness(Integer preparedness) {
this.preparedness = preparedness;
}
public Integer getInternalResponse() {
return internalResponse;
}
public void setInternalResponse(Integer internalResponse) {
this.internalResponse = internalResponse;
}
public Integer getExternalResponse() {
return externalResponse;
}
public void setExternalResponse(Integer externalResponse) {
this.externalResponse = externalResponse;
}
}