39 lines
952 B
Java
39 lines
952 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class KamusIKUVO extends BaseMasterVO {
|
|
|
|
@NotNull(message = "Indikator Harus Diisi")
|
|
@Caption(value = "Indikator")
|
|
private IndikatorRensarVO indikator;
|
|
|
|
@NotNull(message = "Bobot IKU Harus Diisi")
|
|
@Caption(value = "Bobot IKU")
|
|
private BobotIKUVO bobotIKU;
|
|
|
|
@NotNull(message = "PIC Harus Diisi")
|
|
@Caption(value = "PIC")
|
|
private JabatanVO pic;
|
|
|
|
@Caption(value = "Sumber Data")
|
|
private String sumberData;
|
|
|
|
@NotNull(message = "Periode Pelaporan Harus Diisi")
|
|
@Caption(value = "Periode Pelaporan")
|
|
private PeriodePelaporanVO periodePelaporan;
|
|
|
|
@Caption(value = "Awal Periode")
|
|
private Integer awalPeriode;
|
|
|
|
@Caption(value = "Akhir Periode")
|
|
private Integer akhirPeriode;
|
|
|
|
} |