108 lines
2.2 KiB
Java
108 lines
2.2 KiB
Java
package com.jasamedika.medifirst2000.entities;
|
|
|
|
import java.util.Date;
|
|
import java.util.HashSet;
|
|
import java.util.Set;
|
|
import javax.persistence.*;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonBackReference;
|
|
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
/**
|
|
* class NamaPegawai
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Entity
|
|
@Table(name = "sdm_NamaPegawai_T")
|
|
public class NamaPegawai extends BaseTransaction {
|
|
@Column(name = "Id", nullable = false, length = 100)
|
|
@Caption(value = "Id")
|
|
private Integer id;
|
|
|
|
@Column(name = "NamaExternal", nullable = false, length = 100)
|
|
@Caption(value = "NamaExternal")
|
|
private String namaExternal;
|
|
|
|
@Column(name = "NoRec", nullable = false, length = 100)
|
|
@Caption(value = "NoRec")
|
|
private String noRec;
|
|
|
|
@Column(name = "Name", nullable = false, length = 100)
|
|
@Caption(value = "Name")
|
|
private String name;
|
|
|
|
@Column(name = "Kode", nullable = false, length = 100)
|
|
@Caption(value = "Kode")
|
|
private Integer kode;
|
|
|
|
@Column(name = "KodeExternal", nullable = false, length = 100)
|
|
@Caption(value = "KodeExternal")
|
|
private Integer kodeExternal;
|
|
|
|
@Column(name = "ReportDisplay", nullable = false, length = 100)
|
|
@Caption(value = "ReportDisplay")
|
|
private String reportDisplay;
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getNamaExternal() {
|
|
return namaExternal;
|
|
}
|
|
|
|
public void setNamaExternal(String namaExternal) {
|
|
this.namaExternal = namaExternal;
|
|
}
|
|
|
|
public String getNoRec() {
|
|
return noRec;
|
|
}
|
|
|
|
public void setNoRec(String noRec) {
|
|
this.noRec = noRec;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public Integer getKode() {
|
|
return kode;
|
|
}
|
|
|
|
public void setKode(Integer kode) {
|
|
this.kode = kode;
|
|
}
|
|
|
|
public Integer getKodeExternal() {
|
|
return kodeExternal;
|
|
}
|
|
|
|
public void setKodeExternal(Integer kodeExternal) {
|
|
this.kodeExternal = kodeExternal;
|
|
}
|
|
|
|
public String getReportDisplay() {
|
|
return reportDisplay;
|
|
}
|
|
|
|
public void setReportDisplay(String reportDisplay) {
|
|
this.reportDisplay = reportDisplay;
|
|
}
|
|
|
|
|
|
|
|
} |