42 lines
895 B
Java
42 lines
895 B
Java
package com.jasamedika.medifirst2000.dto;
|
|
|
|
public class PengeringanDto extends ProsesCuciLinenDto{
|
|
private String tgl;
|
|
private String tglKerja;
|
|
private Integer petugasId;
|
|
private String namaPetugas;
|
|
private Integer jumlahCycle;
|
|
|
|
public String getTgl() {
|
|
return tgl;
|
|
}
|
|
public void setTgl(String tgl) {
|
|
this.tgl = tgl;
|
|
}
|
|
public String getTglKerja() {
|
|
return tglKerja;
|
|
}
|
|
public void setTglKerja(String tglKerja) {
|
|
this.tglKerja = tglKerja;
|
|
}
|
|
public Integer getPetugasId() {
|
|
return petugasId;
|
|
}
|
|
public void setPetugasId(Integer petugasId) {
|
|
this.petugasId = petugasId;
|
|
}
|
|
public String getNamaPetugas() {
|
|
return namaPetugas;
|
|
}
|
|
public void setNamaPetugas(String namaPetugas) {
|
|
this.namaPetugas = namaPetugas;
|
|
}
|
|
public Integer getJumlahCycle() {
|
|
return jumlahCycle;
|
|
}
|
|
public void setJumlahCycle(Integer jumlahCycle) {
|
|
this.jumlahCycle = jumlahCycle;
|
|
}
|
|
|
|
}
|