Salman Manoe 0e3b77fdc2 Update domain entity
Penerapan lombok untuk mengurangi boilerplate code
2025-02-11 14:41:44 +07:00

38 lines
984 B
Java

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 static javax.persistence.GenerationType.SEQUENCE;
/**
* class KuantitasLahirBayi
*
* @author Generator
*/
@Getter
@Setter
@Entity
@Table(name = "KuantitasLahirBayi_M")
public class KuantitasLahirBayi extends BaseMaster {
@Caption(value = "Kode Kuantitas Lahir Bayi")
private String kdKuantitasLahirBayi;
@Caption(value = "Kuantitas Lahir Bayi")
private String kuantitasLahirBayi;
@Caption(value = "QKuantitas Lahir Bayi")
private Byte qKuantitasLahirBayi;
@Id
@GeneratedValue(strategy = SEQUENCE, generator = "public.kuantitaslahirbayi_m_id_seq")
@SequenceGenerator(name = "public.kuantitaslahirbayi_m_id_seq", sequenceName = "public.kuantitaslahirbayi_m_id_seq", allocationSize = 1)
@Column(name = "id")
protected Integer id;
}