52 lines
1.4 KiB
Java
52 lines
1.4 KiB
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import java.util.Date;
|
|
import java.util.HashSet;
|
|
import java.util.Set;
|
|
import javax.persistence.*;
|
|
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonBackReference;
|
|
import javax.validation.constraints.NotNull;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
/**
|
|
* class PerhitunganUangLemburPegawaiVOVO
|
|
*
|
|
* @author Generator
|
|
*/
|
|
public class PerhitunganUangLemburPegawaiVO extends BaseTransactionVO{
|
|
@Column(name = "NomorUangLembur", nullable = false , length = 100)
|
|
@Caption(value = "NomorUangLembur")
|
|
private String nomorUangLembur ;
|
|
public String getNomorUangLembur() {
|
|
return nomorUangLembur ;
|
|
}
|
|
public void setNomorUangLembur(String nomorUangLembur ) {
|
|
this.nomorUangLembur = nomorUangLembur ;
|
|
}
|
|
|
|
@Column(name = "TanggalProses", nullable = false , length = 100)
|
|
@Caption(value = "TanggalProses")
|
|
private Date tanggalProses ;
|
|
public Date getTanggalProses() {
|
|
return tanggalProses ;
|
|
}
|
|
public void setTanggalProses(Date tanggalProses ) {
|
|
this.tanggalProses = tanggalProses ;
|
|
}
|
|
|
|
@Column(name = "Keterangan", nullable = false , length = 100)
|
|
@Caption(value = "Keterangan")
|
|
private String keterangan ;
|
|
public String getKeterangan() {
|
|
return keterangan ;
|
|
}
|
|
public void setKeterangan(String keterangan ) {
|
|
this.keterangan = keterangan ;
|
|
}
|
|
|
|
|
|
} |