127 lines
3.2 KiB
Java
127 lines
3.2 KiB
Java
package com.jasamedika.medifirst2000.entities;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonBackReference;
|
|
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
import javax.persistence.*;
|
|
|
|
/**
|
|
* class Agama
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
@Entity
|
|
@Table(name = "RegistrasiGawatDaruratDetail_T")
|
|
public class RegistrasiGawatDaruratDetail extends BaseTransaction {
|
|
|
|
@ManyToOne
|
|
@JoinColumn(name = "pasienDaftarFk")
|
|
@Caption(value = "Pasien Daftar")
|
|
@JsonBackReference
|
|
private PasienDaftar pasienDaftar;
|
|
|
|
@Column(name = "pasienDaftarFk", insertable = false, updatable = false)
|
|
private String pasienDaftarId;
|
|
|
|
@ManyToOne
|
|
@JoinColumn(name = "StatusLukaLesiPendarahanFk")
|
|
@Caption(value = "StatusLukaLesiPendarahan")
|
|
@JsonBackReference
|
|
private StatusLukaLesiPendarahan statusLukaLesiPendarahan;
|
|
|
|
@Column(name = "StatusLukaLesiPendarahanFk", insertable = false, updatable = false)
|
|
private Integer statusLukaLesiPendarahanId;
|
|
|
|
@ManyToOne
|
|
@Caption(value = "Transportasi Pasien")
|
|
private TransportasiPasien transportasiPasien;
|
|
|
|
@Caption(value = "Tempat Kejadian")
|
|
private String tempatKejadian;
|
|
|
|
@Caption(value = "Berikan Oksigen")
|
|
private String berikanOksigen;
|
|
|
|
@Caption(value = "Pasang Infus 1")
|
|
private String pasangInfus1;
|
|
|
|
@Caption(value = "Pasang Ett")
|
|
private String pasangEtt;
|
|
|
|
@Caption(value = "defibrasi")
|
|
private String defibrasi;
|
|
|
|
@Caption(value = "lainnya")
|
|
private String lainnya;
|
|
|
|
@Column(name = "skorNyeri", length = 100)
|
|
@Caption(value = "skorNyeri")
|
|
private String skorNyeri;
|
|
|
|
@ManyToOne
|
|
@JoinColumn(name = "jenisNyeriFk")
|
|
@Caption(value = "jenisNyeri")
|
|
private JenisNyeri jenisNyeri;
|
|
|
|
@Column(name = "jenisNyeriFk", insertable = false, updatable = false)
|
|
private Integer jenisNyeriId;
|
|
|
|
@Column(name = "lokasi", length = 100)
|
|
@Caption(value = "lokasi")
|
|
private String lokasi;
|
|
|
|
@Column(name = "durasi", length = 100)
|
|
@Caption(value = "durasi")
|
|
private String durasi;
|
|
|
|
@Column(name = "pencetus", length = 100)
|
|
@Caption(value = "pencetus")
|
|
private String pencetus;
|
|
|
|
@Column(name = "isDeathOnArrival", length = 100)
|
|
@Caption(value = "isDeathOnArrival")
|
|
private Boolean isDeathOnArrival;
|
|
|
|
@ManyToOne
|
|
@JoinColumn(name = "risikoJatuhFk")
|
|
@Caption(value = "risikoJatuh")
|
|
private RisikoJatuh risikoJatuh;
|
|
|
|
@Column(name = "risikoJatuhFk", insertable = false, updatable = false)
|
|
private Integer risikoJatuhId;
|
|
|
|
@Column(name = "isapLendir", length = 100)
|
|
@Caption(value = "isapLendir")
|
|
private String isapLendir;
|
|
|
|
@Column(name = "pasangOroPharingAirway", length = 100)
|
|
@Caption(value = "pasangOroPharingAirway")
|
|
private String pasangOroPharingAirway;
|
|
|
|
@Column(name = "aturPosisi1", length = 100)
|
|
@Caption(value = "aturPosisi1")
|
|
private String aturPosisi1;
|
|
|
|
@Column(name = "aturPosisi2", length = 100)
|
|
@Caption(value = "aturPosisi2")
|
|
private String aturPosisi2;
|
|
|
|
@Column(name = "monitorIntakeOuttake", length = 100)
|
|
@Caption(value = "monitorIntakeOuttake")
|
|
private String monitorIntakeOuttake;
|
|
|
|
@Column(name = "monitorTtv", length = 100)
|
|
@Caption(value = "monitorTtv")
|
|
private String monitorTtv;
|
|
|
|
@Column(name = "spO2", length = 100)
|
|
@Caption(value = "spO2")
|
|
private String spO2;
|
|
|
|
}
|