42 lines
1023 B
Java
42 lines
1023 B
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.HashSet;
|
|
import java.util.Set;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class MasukKamarVO extends BaseTransactionVO {
|
|
|
|
public PersetujuanUmumVO persetujuanUmum;
|
|
|
|
@NotNull(message = "Pasien aftar Harus Diisi")
|
|
@Caption(value = "Pasien Daftar")
|
|
public PasienDaftarVO pasienDaftar;
|
|
|
|
@Caption(value = "Kamar")
|
|
@NotNull(message = "Kamar Harus Diisi")
|
|
private KamarVO kamar;
|
|
|
|
@Caption(value = "Kelas")
|
|
@NotNull(message = "Kelas Harus Diisi")
|
|
private KelasVO kelas;
|
|
|
|
@Caption(value = "Tempat Tidur")
|
|
@NotNull(message = "empat Tidur Harus Diisi")
|
|
private TempatTidurVO tempatTidur;
|
|
|
|
private String pemberiInformasi;
|
|
|
|
@Caption(value = "petugas")
|
|
private PegawaiVO petugas;
|
|
|
|
private Set<MapPasienDpjpToPasienDaftarVO> mapPasienDpjpToPasienDaftar = new HashSet<>();
|
|
|
|
}
|