40 lines
865 B
Java
40 lines
865 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class DetailHVAVO extends BaseTransactionVO {
|
|
|
|
@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;
|
|
|
|
}
|