56 lines
1.2 KiB
Java
56 lines
1.2 KiB
Java
package com.jasamedika.medifirst2000.dto;
|
|
|
|
public class KunjunganPasienStatusJenisOperasiDto {
|
|
private String periode;
|
|
private String ruangan;
|
|
private Long countBaruL;
|
|
private Long countBaruP;
|
|
private Long countLamaL;
|
|
private Long countLamaP;
|
|
private Long totalStatusPasien;
|
|
|
|
public String getPeriode() {
|
|
return periode;
|
|
}
|
|
public void setPeriode(String periode) {
|
|
this.periode = periode;
|
|
}
|
|
public String getRuangan() {
|
|
return ruangan;
|
|
}
|
|
public void setRuangan(String ruangan) {
|
|
this.ruangan = ruangan;
|
|
}
|
|
public Long getCountBaruL() {
|
|
return countBaruL;
|
|
}
|
|
public void setCountBaruL(Long countBaruL) {
|
|
this.countBaruL = countBaruL;
|
|
}
|
|
public Long getCountBaruP() {
|
|
return countBaruP;
|
|
}
|
|
public void setCountBaruP(Long countBaruP) {
|
|
this.countBaruP = countBaruP;
|
|
}
|
|
public Long getCountLamaL() {
|
|
return countLamaL;
|
|
}
|
|
public void setCountLamaL(Long countLamaL) {
|
|
this.countLamaL = countLamaL;
|
|
}
|
|
public Long getCountLamaP() {
|
|
return countLamaP;
|
|
}
|
|
public void setCountLamaP(Long countLamaP) {
|
|
this.countLamaP = countLamaP;
|
|
}
|
|
public Long getTotalStatusPasien() {
|
|
return totalStatusPasien;
|
|
}
|
|
public void setTotalStatusPasien(Long totalStatusPasien) {
|
|
this.totalStatusPasien = totalStatusPasien;
|
|
}
|
|
|
|
}
|