58 lines
1.3 KiB
Java
58 lines
1.3 KiB
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 java.util.Date;
|
|
import java.util.HashSet;
|
|
import java.util.Set;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class PegawaiSKCutiVO extends BaseMasterVO {
|
|
|
|
@Caption(value = "Object Triger Akumulasi")
|
|
private PegawaiSKCutiVO trigerAkumulasi;
|
|
|
|
private Set<PegawaiSKCutiVO> trigerAkumulasiSet = new HashSet<>();
|
|
|
|
@Caption(value = "Object Kategory Pegawai")
|
|
private KategoryPegawaiVO kategoryPegawai;
|
|
|
|
@Caption(value = "Object Range Masa Kerja")
|
|
private RangeVO rangeMasaKerja;
|
|
|
|
@Caption(value = "Object Status Pegawai")
|
|
private StatusPegawaiVO statusPegawai;
|
|
|
|
@Caption(value = "Kuota Total Hari")
|
|
private Integer kuotaTotalHari;
|
|
|
|
@Caption(value = "Kuota Min Hari Take")
|
|
private Integer kuotaMinHariTake;
|
|
|
|
@Caption(value = "Qty Max Take")
|
|
private Integer qtyMaxTake;
|
|
|
|
@Caption(value = "Is By Month")
|
|
private Integer isByMonth;
|
|
|
|
@Caption(value = "Is By Year")
|
|
private Integer isByYear;
|
|
|
|
@Caption(value = "Is Pro Rate")
|
|
private Integer isProRate;
|
|
|
|
@Caption(value = "Tgl Kuota Total Hari Reset")
|
|
private Date tglKuotaTotalHariReset;
|
|
|
|
@Caption(value = "Is Akumulasi")
|
|
private Integer isAkumulasi;
|
|
|
|
@Caption(value = "Keterangan Lainya")
|
|
private String keteranganLainya;
|
|
|
|
}
|