package com.jasamedika.medifirst2000.entities; import com.jasamedika.medifirst2000.base.BaseMaster; import com.jasamedika.medifirst2000.helper.Caption; import lombok.Getter; import lombok.Setter; import javax.persistence.*; import javax.validation.constraints.NotNull; import static javax.persistence.GenerationType.SEQUENCE; /** * class StatusLahir * * @author Generator */ @Getter @Setter @Entity @Table(name = "RM_StatusLahir_M") public class StatusLahir extends BaseMaster { @NotNull(message = "Name tidak boleh kosong") @Column(name = "Name", nullable = false, length = 100) @Caption(value = "Name") private String name; @Id @GeneratedValue(strategy = SEQUENCE, generator = "public.statuslahir_m_id_seq") @SequenceGenerator(name = "public.statuslahir_m_id_seq", sequenceName = "public.statuslahir_m_id_seq", allocationSize = 1) @Column(name = "id") protected Integer id; }