36 lines
933 B
Java
36 lines
933 B
Java
package com.jasamedika.medifirst2000.entities;
|
|
|
|
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.Table;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* class PerhitunganUangLemburPegawai
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
@Entity
|
|
@Table(name = "sdm_PerhitunganUangLemburPegawai_T")
|
|
public class PerhitunganUangLemburPegawai extends BaseTransaction {
|
|
|
|
@Column(name = "NomorUangLembur", nullable = false, length = 100)
|
|
@Caption(value = "NomorUangLembur")
|
|
private String nomorUangLembur;
|
|
|
|
@Column(name = "TanggalProses", nullable = false, length = 100)
|
|
@Caption(value = "TanggalProses")
|
|
private Date tanggalProses;
|
|
|
|
@Column(name = "Keterangan", nullable = false, length = 100)
|
|
@Caption(value = "Keterangan")
|
|
private String keterangan;
|
|
|
|
} |