47 lines
893 B
Java
47 lines
893 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import java.util.Date;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.Table;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
/**
|
|
* class Agama
|
|
*
|
|
* @author Generator
|
|
*/
|
|
//@Entity
|
|
//@Table(name = "Agama_M")
|
|
public class UploadAbsenVO {
|
|
|
|
|
|
private String idFingerPrint;
|
|
private Date jamMasuk;
|
|
private Date jamKeluar;
|
|
public String getIdFingerPrint() {
|
|
return idFingerPrint;
|
|
}
|
|
public void setIdFingerPrint(String idFingerPrint) {
|
|
this.idFingerPrint = idFingerPrint;
|
|
}
|
|
public Date getJamMasuk() {
|
|
return jamMasuk;
|
|
}
|
|
public void setJamMasuk(Date jamMasuk) {
|
|
this.jamMasuk = jamMasuk;
|
|
}
|
|
public Date getJamKeluar() {
|
|
return jamKeluar;
|
|
}
|
|
public void setJamKeluar(Date jamKeluar) {
|
|
this.jamKeluar = jamKeluar;
|
|
}
|
|
|
|
|
|
}
|
|
|