package com.jasamedika.medifirst2000.entities; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Table; import javax.validation.constraints.NotNull; 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 = "Catatan_M") public class Catatan extends BaseMaster { @Column(name = "Catatan", nullable = false) @Caption(value = "Catatan") private String catatan; public String getCatatan() { return catatan; } public void setCatatan(String catatan) { this.catatan = catatan; } @Id @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "public.catatan_m_id_seq") @javax.persistence.SequenceGenerator(name = "public.catatan_m_id_seq", sequenceName = "public.catatan_m_id_seq", allocationSize = 1) @Column(name = "id") protected Integer id; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } }