46 lines
900 B
Java
46 lines
900 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;
|
|
|
|
/**
|
|
* class JenisWaktu
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
public class JenisWaktuVO extends BaseMasterVO {
|
|
|
|
@Caption(value = "Jam Akhir")
|
|
private Byte jamAkhir;
|
|
|
|
@Caption(value = "Jam Awal")
|
|
private Byte jamAwal;
|
|
|
|
@Caption(value = "Jenis Waktu")
|
|
private String jenisWaktu;
|
|
|
|
@Caption(value = "Object Departemen")
|
|
private DepartemenVO departemen;
|
|
|
|
private Integer departemenId;
|
|
|
|
@Caption(value = "Kode Jenis Waktu")
|
|
private Byte kdJenisWaktu;
|
|
|
|
@Caption(value = "Object Kelompok Produk")
|
|
private KelompokProdukVO kelompokProduk;
|
|
|
|
private Integer kelompokProdukId;
|
|
|
|
@Caption(value = "No Urut")
|
|
private Byte noUrut;
|
|
|
|
@Caption(value = "QJenis Waktu")
|
|
private Byte qJenisWaktu;
|
|
|
|
}
|