61 lines
1.3 KiB
Java
61 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;
|
|
|
|
/**
|
|
* class ShiftKerjaVOVO
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
public class ShiftKerjaVO extends BaseMasterVO {
|
|
|
|
@Caption(value = "Object JadwalPraktek")
|
|
private JadwalPraktekVO jadwalPraktek;
|
|
|
|
@Caption(value = "NamaShift")
|
|
private String namaShift;
|
|
|
|
@Caption(value = "JamPraktek")
|
|
private JamPraktekVO jamPraktek;
|
|
|
|
@Caption(value = "Kelompok Shift")
|
|
private KelompokShiftVO kelompokShift;
|
|
|
|
@Caption(value = "Kode Shift")
|
|
private Byte kdShift;
|
|
|
|
@Caption(value = "JamMasuk")
|
|
private String jamMasuk;
|
|
|
|
@Caption(value = "JamPulang")
|
|
private String jamPulang;
|
|
|
|
@Caption(value = "Jam Break Akhir")
|
|
private String jamBreakAkhir;
|
|
|
|
@Caption(value = "Jam Break Awal")
|
|
private String jamBreakAwal;
|
|
|
|
@Caption(value = "Factor Rate")
|
|
private Float factorRate;
|
|
|
|
@Caption(value = "Operator Factor Rate")
|
|
private String operatorFactorRate;
|
|
|
|
@Caption(value = "Komponen Index")
|
|
private KomponenIndexVO komponenIndex;
|
|
|
|
private Long waktuIstirahat;
|
|
|
|
@Caption(value = "Kode Shift")
|
|
private Integer qShift;
|
|
|
|
@Caption(value = "flagKetidakhadiran")
|
|
private Boolean flagKetidakhadiran;
|
|
|
|
} |