81 lines
2.0 KiB
Java
81 lines
2.0 KiB
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
import java.util.Date;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class RegistrasiPelayananVO extends BaseTransactionVO {
|
|
|
|
@Caption(value = "Kasus Penyakit")
|
|
public KasusPenyakitVO kasusPenyakit;
|
|
|
|
@Caption(value = "Jenis Pelayanan")
|
|
private String jenisPelayanan;
|
|
|
|
@NotNull(message = "Ruangan Harus Diisi")
|
|
@Caption(value = "Ruangan")
|
|
public RuanganVO ruangan;
|
|
|
|
@NotNull(message = "Ruangan Harus Diisi")
|
|
@Caption(value = "Pasien")
|
|
public PasienVO pasien;
|
|
|
|
@NotNull(message = "Asal Rujukan Harus Diisi")
|
|
@Caption(value = "Asal Rujukan")
|
|
public AsalRujukanVO asalRujukan;
|
|
|
|
@Caption(value = "Pegawai")
|
|
public PegawaiVO pegawai;
|
|
|
|
@NotNull(message = "Kelompok pasien Harus Diisi")
|
|
@Caption(value = "Kelompok Pasien")
|
|
public KelompokPasienVO kelompokPasien;
|
|
|
|
@NotNull(message = "Is On Site Service tidak boleh kosong")
|
|
@Caption(value = "Is On Site Service")
|
|
private Byte isOnSiteService;
|
|
|
|
@NotNull(message = "Is Registrasi Lengkap tidak boleh kosong")
|
|
@Caption(value = "Is Registrasi Lengkap")
|
|
private Byte isRegistrasiLengkap;
|
|
|
|
@Caption(value = "Tanggal Registrasi")
|
|
private Date tglRegistrasi;
|
|
|
|
@Caption(value = "Rekanan")
|
|
private RekananVO rekanan;
|
|
|
|
@Caption(value = "Kelas")
|
|
private KelasVO kelas;
|
|
|
|
@Caption(value = "Kamar")
|
|
private KamarVO kamar;
|
|
|
|
@Caption(value = "nomorTempatTidur")
|
|
private TempatTidurVO nomorTempatTidur;
|
|
|
|
@Caption(value = "emergensi")
|
|
private Boolean emergensi;
|
|
|
|
@Caption(value = "status")
|
|
private String status;
|
|
|
|
@Caption(value = "admisiRencanaPindahRuangan")
|
|
private AdmisiRencanaPindahRuanganVO admisiRencanaPindahRuangan;
|
|
|
|
@Caption(value = "noRecPasienDaftar")
|
|
private String noRecPasienDaftar;
|
|
|
|
@Caption(value = "noRecAntrianPasien")
|
|
private String noRecAntrianPasien;
|
|
|
|
private Boolean rawatGabung;
|
|
|
|
}
|