32 lines
601 B
Java
32 lines
601 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;
|
|
|
|
/**
|
|
* @author Salman
|
|
* @version 1.0.0
|
|
* @since 26/12/2023
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
public class DpjpPasienVO extends BaseTransactionVO {
|
|
|
|
@Caption(value = "Dokter")
|
|
private PegawaiVO dokter;
|
|
|
|
@Caption(value = "Pasien")
|
|
private PasienVO pasien;
|
|
|
|
@Caption(value = "Tanggal Awal")
|
|
private Date tanggalAwal;
|
|
|
|
@Caption(value = "Tanggal Akhir")
|
|
private Date tanggalAkhir;
|
|
|
|
}
|