30 lines
518 B
Java
30 lines
518 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
import java.util.Date;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class KendaliDokumenRekamMedisVO extends BaseTransactionVO {
|
|
|
|
private StatusKendaliDokumenVO statusKendaliDokumen;
|
|
|
|
private Integer statusKendaliDokumenId;
|
|
|
|
private PasienVO pasien;
|
|
|
|
private Integer pasienId;
|
|
|
|
private Date tglUpdate;
|
|
|
|
private Date tglKembali;
|
|
|
|
private String dariUnit;
|
|
|
|
private String keUnit;
|
|
|
|
}
|