39 lines
892 B
Java
39 lines
892 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 KontrakKinerjaVO extends BaseMasterVO {
|
|
|
|
@NotNull(message = "Unit Kerja tidak boleh kosong")
|
|
@Caption(value = "Unit Kerja")
|
|
private DepartemenVO unitKerja;
|
|
|
|
@NotNull(message = "Kamus Indikator tidak boleh kosong")
|
|
@Caption(value = "Kamus Indikator")
|
|
private KamusIndikatorVO kamusIndikator;
|
|
|
|
@NotNull(message = "Peran tidak boleh kosong")
|
|
@Caption(value = "Peran")
|
|
private PeranVO peran;
|
|
|
|
@Caption(value = "Tahun")
|
|
private Integer tahun;
|
|
|
|
@Caption(value = "Pencapaian")
|
|
private String pencapaian;
|
|
|
|
@Caption(value = "bobot")
|
|
private Integer bobot;
|
|
|
|
@Caption(value = "program")
|
|
private String program;
|
|
|
|
}
|