Penerapan cuti tahunan di cuti bersama tidak memengaruhi jata cuti bersama yang bisa ditangguhkan
69 lines
1.6 KiB
Java
69 lines
1.6 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;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class KalenderVO extends BaseMasterVO {
|
|
|
|
@Caption(value = "Bulan Fiscal")
|
|
private String bulanFiscal;
|
|
|
|
@Caption(value = "Bulan Ke Dlm Tahun")
|
|
private Byte bulanKeDlmTahun;
|
|
|
|
@Caption(value = "Hari Ke Dlm Bulan")
|
|
private Byte hariKeDlmBulan;
|
|
|
|
@Caption(value = "Hari Ke Dlm Minggu")
|
|
private Byte hariKeDlmMinggu;
|
|
|
|
@Caption(value = "Hari Ke Dlm Tahun")
|
|
private short hariKeDlmTahun;
|
|
|
|
@Caption(value = "Object History Login D")
|
|
private HistoryLoginModulAplikasiVO historyLoginD;
|
|
|
|
@Caption(value = "Object History Login I")
|
|
private HistoryLoginModulAplikasiVO historyLoginI;
|
|
|
|
@Caption(value = "Object History Login S")
|
|
private HistoryLoginModulAplikasiVO historyLoginS;
|
|
|
|
@Caption(value = "Object History Login U")
|
|
private HistoryLoginModulAplikasiVO historyLoginU;
|
|
|
|
@Caption(value = "Kode Tanggal")
|
|
private Integer kdTanggal;
|
|
|
|
@Caption(value = "Nama Bulan")
|
|
private String namaBulan;
|
|
|
|
@Caption(value = "Nama Hari")
|
|
private String namaHari;
|
|
|
|
@Caption(value = "QTanggal")
|
|
private Integer qTanggal;
|
|
|
|
@Caption(value = "Semester Ke Dlm Tahun")
|
|
private Byte semesterKeDlmTahun;
|
|
|
|
@Caption(value = "Tahun Fiscal")
|
|
private short tahunFiscal;
|
|
|
|
@Caption(value = "Tahun Kalender")
|
|
private short tahunKalender;
|
|
|
|
@Caption(value = "Tanggal")
|
|
private Date tanggal;
|
|
|
|
@Caption(value = "Triwulan Ke Dlm Tahun")
|
|
private Byte triwulanKeDlmTahun;
|
|
|
|
}
|