SC-be-java/jasamedika-domain/src/main/java/com/jasamedika/medifirst2000/dto/KunjunganPasienStatusDanJenisPasienDto.java
2021-01-07 11:34:56 +07:00

90 lines
2.1 KiB
Java

package com.jasamedika.medifirst2000.dto;
public class KunjunganPasienStatusDanJenisPasienDto {
private String periode;
private String ruangan;
private Long countBpjsL;
private Long countBpjsP;
private Long countUmumL;
private Long countUmumP;
private Long countBaruL;
private Long countBaruP;
private Long countLamaL;
private Long countLamaP;
private Long totalJenisPasien;
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 getCountBpjsL() {
return countBpjsL;
}
public void setCountBpjsL(Long countBpjsL) {
this.countBpjsL = countBpjsL;
}
public Long getCountBpjsP() {
return countBpjsP;
}
public void setCountBpjsP(Long countBpjsP) {
this.countBpjsP = countBpjsP;
}
public Long getCountUmumL() {
return countUmumL;
}
public void setCountUmumL(Long countUmumL) {
this.countUmumL = countUmumL;
}
public Long getCountUmumP() {
return countUmumP;
}
public void setCountUmumP(Long countUmumP) {
this.countUmumP = countUmumP;
}
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 getTotalJenisPasien() {
return totalJenisPasien;
}
public void setTotalJenisPasien(Long totalJenisPasien) {
this.totalJenisPasien = totalJenisPasien;
}
public Long getTotalStatusPasien() {
return totalStatusPasien;
}
public void setTotalStatusPasien(Long totalStatusPasien) {
this.totalStatusPasien = totalStatusPasien;
}
}