Update Entity Target Skor Dokter
Perbaikan kolom TMT
This commit is contained in:
parent
563bb8f58d
commit
b396626f69
@ -49,17 +49,11 @@ public class TargetSkorDokter extends BaseTransaction {
|
|||||||
@Caption(value = "Tanggal Hitung")
|
@Caption(value = "Tanggal Hitung")
|
||||||
private Date tglHitung;
|
private Date tglHitung;
|
||||||
|
|
||||||
@Column(name = "tgltmtawal", nullable = false)
|
@Column(name = "tmt", nullable = false)
|
||||||
@Temporal(TemporalType.DATE)
|
@Temporal(TemporalType.DATE)
|
||||||
@NotNull(message = "Tanggal awal TMT harus diisi")
|
@NotNull(message = "TMT harus diisi")
|
||||||
@Caption(value = "TMT Awal")
|
@Caption(value = "TMT")
|
||||||
private Date tmtAwal;
|
private Date tmt;
|
||||||
|
|
||||||
@Column(name = "tgltmtakhir", nullable = false)
|
|
||||||
@Temporal(TemporalType.DATE)
|
|
||||||
@NotNull(message = "Tanggal akhir TMT harus diisi")
|
|
||||||
@Caption(value = "TMT Akhir")
|
|
||||||
private Date tmtAkhir;
|
|
||||||
|
|
||||||
@Column(name = "totalskordasar", nullable = false)
|
@Column(name = "totalskordasar", nullable = false)
|
||||||
@NotNull(message = "Total skor dasar harus diisi")
|
@NotNull(message = "Total skor dasar harus diisi")
|
||||||
@ -106,20 +100,12 @@ public class TargetSkorDokter extends BaseTransaction {
|
|||||||
this.tglHitung = tglHitung;
|
this.tglHitung = tglHitung;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Date getTmtAwal() {
|
public Date getTmt() {
|
||||||
return tmtAwal;
|
return tmt;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTmtAwal(Date tmtAwal) {
|
public void setTmt(Date tmt) {
|
||||||
this.tmtAwal = tmtAwal;
|
this.tmt = tmt;
|
||||||
}
|
|
||||||
|
|
||||||
public Date getTmtAkhir() {
|
|
||||||
return tmtAkhir;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTmtAkhir(Date tmtAkhir) {
|
|
||||||
this.tmtAkhir = tmtAkhir;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public Double getTotalSkorDasar() {
|
public Double getTotalSkorDasar() {
|
||||||
|
|||||||
@ -26,11 +26,8 @@ public class TargetSkorDokterVO extends BaseTransactionVO {
|
|||||||
@Caption(value = "Tanggal Hitung")
|
@Caption(value = "Tanggal Hitung")
|
||||||
private Date tglHitung;
|
private Date tglHitung;
|
||||||
|
|
||||||
@Caption(value = "TMT Awal")
|
@Caption(value = "TMT")
|
||||||
private Date tmtAwal;
|
private Date tmt;
|
||||||
|
|
||||||
@Caption(value = "TMT Akhir")
|
|
||||||
private Date tmtAkhir;
|
|
||||||
|
|
||||||
@Caption(value = "Total Skor IKI 1.0")
|
@Caption(value = "Total Skor IKI 1.0")
|
||||||
private Double totalSkorDasar;
|
private Double totalSkorDasar;
|
||||||
@ -75,20 +72,12 @@ public class TargetSkorDokterVO extends BaseTransactionVO {
|
|||||||
this.tglHitung = tglHitung;
|
this.tglHitung = tglHitung;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Date getTmtAwal() {
|
public Date getTmt() {
|
||||||
return tmtAwal;
|
return tmt;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTmtAwal(Date tmtAwal) {
|
public void setTmt(Date tmt) {
|
||||||
this.tmtAwal = tmtAwal;
|
this.tmt = tmt;
|
||||||
}
|
|
||||||
|
|
||||||
public Date getTmtAkhir() {
|
|
||||||
return tmtAkhir;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTmtAkhir(Date tmtAkhir) {
|
|
||||||
this.tmtAkhir = tmtAkhir;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public Double getTotalSkorDasar() {
|
public Double getTotalSkorDasar() {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user