- penambahan virtual object untuk perhitungan skor sebagai penentuan target skor medis
- penghapusan virtual object untuk penampung data visite dokter
This commit is contained in:
parent
377dddda67
commit
9d2d333a22
@ -1,36 +0,0 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import java.sql.Date;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.vo.BaseModelVO;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
/**
|
||||
* @author ITI-14
|
||||
* @since Oct 21, 2021
|
||||
*/
|
||||
public class CpptHarianPertamaVO extends BaseModelVO {
|
||||
|
||||
@Caption(value = "Dokter DPJP")
|
||||
private Integer pegawaifk;
|
||||
|
||||
@Caption(value = "Tanggal Input")
|
||||
private Date tglinput;
|
||||
|
||||
public Integer getPegawaifk() {
|
||||
return pegawaifk;
|
||||
}
|
||||
|
||||
public void setPegawaifk(Integer pegawaifk) {
|
||||
this.pegawaifk = pegawaifk;
|
||||
}
|
||||
|
||||
public Date getTglinput() {
|
||||
return tglinput;
|
||||
}
|
||||
|
||||
public void setTglinput(Date tglinput) {
|
||||
this.tglinput = tglinput;
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,46 @@
|
||||
package com.jasamedika.medifirst2000.vo;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
/**
|
||||
* @author ITI-14
|
||||
* @since Nov 5, 2021
|
||||
*/
|
||||
public class SkorDokterVO {
|
||||
|
||||
@Caption(value = "Bulan")
|
||||
Date bulan;
|
||||
|
||||
@Caption(value = "ID Pegawai")
|
||||
Integer idPegawai;
|
||||
|
||||
@Caption(value = "Skor")
|
||||
Double skor;
|
||||
|
||||
public Date getBulan() {
|
||||
return bulan;
|
||||
}
|
||||
|
||||
public void setBulan(Date bulan) {
|
||||
this.bulan = bulan;
|
||||
}
|
||||
|
||||
public Integer getIdPegawai() {
|
||||
return idPegawai;
|
||||
}
|
||||
|
||||
public void setIdPegawai(Integer idPegawai) {
|
||||
this.idPegawai = idPegawai;
|
||||
}
|
||||
|
||||
public Double getSkor() {
|
||||
return skor;
|
||||
}
|
||||
|
||||
public void setSkor(Double skor) {
|
||||
this.skor = skor;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user