Salman Manoe 6a3f38fcb6 Update domain virtual object dan dto
Penerapan lombok dependency untuk mengurangi boilerplate
2025-03-03 11:39:50 +07:00

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;
}