46 lines
1.4 KiB
Java
46 lines
1.4 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 org.hibernate.envers.Audited;
|
|
import javax.persistence.GeneratedValue;
|
|
import javax.persistence.GenerationType;
|
|
import javax.persistence.Id;
|
|
|
|
@Entity // @Audited
|
|
@Table(name = "RuanganPosisiCurrent_M")
|
|
@JsonIgnoreProperties({ "hibernateLazyInitializer", "handler" })
|
|
public class RuanganPosisiCurrent extends BaseMaster {
|
|
|
|
@Column(name = "RuanganPosisiCurrent", nullable = true, length = 3)
|
|
@Caption(value = "Ruangan Posisi Current")
|
|
private String ruanganPosisiCurrent;
|
|
|
|
public String getRuanganPosisiCurrent() {
|
|
return ruanganPosisiCurrent;
|
|
}
|
|
|
|
public void setRuanganPosisiCurrent(String ruanganPosisiCurrent) {
|
|
this.ruanganPosisiCurrent = ruanganPosisiCurrent;
|
|
}
|
|
|
|
@Id
|
|
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "public.ruanganposisicurrent_m_id_seq")
|
|
@javax.persistence.SequenceGenerator(name = "public.ruanganposisicurrent_m_id_seq", sequenceName = "public.ruanganposisicurrent_m_id_seq", allocationSize = 1)
|
|
@Column(name = "id")
|
|
protected Integer id;
|
|
|
|
public Integer getId() {
|
|
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
} |