33 lines
893 B
Java
33 lines
893 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;
|
|
|
|
/**
|
|
* @author Shakato
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
public class CheckOutOperationVO extends BaseTransactionVO {
|
|
|
|
@NotNull(message = "Pasien tidak boleh kosong")
|
|
private AntrianPasienDiPeriksaVO pasienDaftar;
|
|
|
|
private Set<KesadaranCheckOutDetailVO> kesadaranCheckOutDetail = new HashSet<>();
|
|
|
|
private Set<KelengkapanCheckOutDetailVO> kelengkapanCheckOutDetail = new HashSet<>();
|
|
|
|
private Set<PemeriksaanCheckOutDetailVO> pemeriksaanCheckOutDetail = new HashSet<>();
|
|
|
|
private Set<PemasanganCheckOutDetailVO> pemasanganCheckOutDetail = new HashSet<>();
|
|
|
|
@Caption(value = "jam")
|
|
private String jam;
|
|
|
|
} |