45 lines
883 B
Java
45 lines
883 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 java.util.Date;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class PemeriksaanAngkaKumanUdaraVO extends BaseTransactionVO {
|
|
|
|
@Caption(value = "Tanggal")
|
|
private Date tanggal;
|
|
|
|
@Caption(value = "Tanggal")
|
|
private RuanganVO namaRuangan;
|
|
|
|
@Caption(value = "Volume")
|
|
private Float volume;
|
|
|
|
@Caption(value = "Tanggal")
|
|
private BakuMutuVO bakuMutu;
|
|
|
|
@Caption(value = "Hasil Pengukuran")
|
|
private String hasilPengukuran;
|
|
|
|
@Caption(value = "File Name")
|
|
private String fileName;
|
|
|
|
@Caption(value = "File")
|
|
private byte[] file;
|
|
|
|
@Caption(value = "Upload Dokumen")
|
|
private String uploadDokumen;
|
|
|
|
private Integer nilaiBakuMutu;
|
|
|
|
private String keterangan;
|
|
|
|
private String reportDisplay;
|
|
|
|
}
|