|
|
@@ -5,27 +5,27 @@ import org.springframework.stereotype.Repository;
|
|
|
@Repository
|
|
|
public class PatientPHRLatestDTO {
|
|
|
|
|
|
- private int patientIdx;
|
|
|
+ private Integer patientIdx;
|
|
|
private String patientName;
|
|
|
private String centerCode;
|
|
|
private String wardNumber;
|
|
|
private String roomNumber;
|
|
|
- private float temperature;
|
|
|
+ private Float temperature;
|
|
|
private String temperatureCreateDate;
|
|
|
- private int oxygenSaturation;
|
|
|
+ private Integer oxygenSaturation;
|
|
|
private String oxygenSaturationCreateDate;
|
|
|
- private int pulseRate;
|
|
|
+ private Integer pulseRate;
|
|
|
private String pulseRateCreateDate;
|
|
|
- private int systolicBloodPressure;
|
|
|
+ private Integer systolicBloodPressure;
|
|
|
private String systolicBloodPressureCreateDate;
|
|
|
- private int diastolicBloodPressure;
|
|
|
+ private Integer diastolicBloodPressure;
|
|
|
private String diastolicBloodPressureCreateDate;
|
|
|
- private int bloodSugar;
|
|
|
+ private Integer bloodSugar;
|
|
|
private String bloodSugarCreateDate;
|
|
|
private int limit;
|
|
|
private int limitMax;
|
|
|
|
|
|
- public int getPatientIdx() {
|
|
|
+ public Integer getPatientIdx() {
|
|
|
return patientIdx;
|
|
|
}
|
|
|
public void setPatientIdx(int patientIdx) {
|
|
|
@@ -55,7 +55,7 @@ public class PatientPHRLatestDTO {
|
|
|
public void setRoomNumber(String roomNumber) {
|
|
|
this.roomNumber = roomNumber;
|
|
|
}
|
|
|
- public float getTemperature() {
|
|
|
+ public Float getTemperature() {
|
|
|
return temperature;
|
|
|
}
|
|
|
public void setTemperature(float temperature) {
|
|
|
@@ -64,7 +64,7 @@ public class PatientPHRLatestDTO {
|
|
|
public String getTemperatureCreateDate() {
|
|
|
return temperatureCreateDate;
|
|
|
}
|
|
|
- public int getOxygenSaturation() {
|
|
|
+ public Integer getOxygenSaturation() {
|
|
|
return oxygenSaturation;
|
|
|
}
|
|
|
public void setOxygenSaturation(int oxygenSaturation) {
|
|
|
@@ -73,7 +73,7 @@ public class PatientPHRLatestDTO {
|
|
|
public String getOxygenSaturationCreateDate() {
|
|
|
return oxygenSaturationCreateDate;
|
|
|
}
|
|
|
- public int getPulseRate() {
|
|
|
+ public Integer getPulseRate() {
|
|
|
return pulseRate;
|
|
|
}
|
|
|
public void setPulseRate(int pulseRate) {
|
|
|
@@ -82,7 +82,7 @@ public class PatientPHRLatestDTO {
|
|
|
public String getPulseRateCreateDate() {
|
|
|
return pulseRateCreateDate;
|
|
|
}
|
|
|
- public int getSystolicBloodPressure() {
|
|
|
+ public Integer getSystolicBloodPressure() {
|
|
|
return systolicBloodPressure;
|
|
|
}
|
|
|
public void setSystolicBloodPressure(int systolicBloodPressure) {
|
|
|
@@ -91,7 +91,7 @@ public class PatientPHRLatestDTO {
|
|
|
public String getSystolicBloodPressureCreateDate() {
|
|
|
return systolicBloodPressureCreateDate;
|
|
|
}
|
|
|
- public int getDiastolicBloodPressure() {
|
|
|
+ public Integer getDiastolicBloodPressure() {
|
|
|
return diastolicBloodPressure;
|
|
|
}
|
|
|
public void setDiastolicBloodPressure(int diastolicBloodPressure) {
|
|
|
@@ -100,7 +100,7 @@ public class PatientPHRLatestDTO {
|
|
|
public String getDiastolicBloodPressureCreateDate() {
|
|
|
return diastolicBloodPressureCreateDate;
|
|
|
}
|
|
|
- public int getBloodSugar() {
|
|
|
+ public Integer getBloodSugar() {
|
|
|
return bloodSugar;
|
|
|
}
|
|
|
public void setBloodSugar(int bloodSugar) {
|