45 lines
1.3 KiB
Java
45 lines
1.3 KiB
Java
package com.jasamedika.medifirst2000.entities;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.Table;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
import com.jasamedika.medifirst2000.base.BaseMaster;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
import javax.persistence.GeneratedValue;
|
|
import javax.persistence.GenerationType;
|
|
import javax.persistence.Id;
|
|
|
|
@Entity
|
|
@Table(name = "JenisSertifikat_M")
|
|
@JsonIgnoreProperties({ "hibernateLazyInitializer", "handler" })
|
|
public class JenisSertifikat extends BaseMaster {
|
|
|
|
@Column(name = "JenisSertifikat", nullable = true)
|
|
@Caption(value = "Jenis Sertifikat")
|
|
private Integer jenisSertifikat;
|
|
|
|
public Integer getJenisSertifikat() {
|
|
return jenisSertifikat;
|
|
}
|
|
|
|
public void setJenisSertifikat(Integer jenisSertifikat) {
|
|
this.jenisSertifikat = jenisSertifikat;
|
|
}
|
|
|
|
@Id
|
|
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "public.jenissertifikat_m_id_seq")
|
|
@javax.persistence.SequenceGenerator(name = "public.jenissertifikat_m_id_seq", sequenceName = "public.jenissertifikat_m_id_seq", allocationSize = 1)
|
|
@Column(name = "id")
|
|
protected Integer id;
|
|
|
|
public Integer getId() {
|
|
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
} |