|
@@ -1,5 +1,7 @@
|
|
|
package com.lemon.lifecenter.dto;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
|
|
@Repository
|
|
@@ -11,19 +13,19 @@ public class PatientPHRLatestDTO {
|
|
|
private String wardNumber;
|
|
|
private String roomNumber;
|
|
|
private Float temperature;
|
|
|
- private String temperatureCreateDate;
|
|
|
+ private Date temperatureCreateDate;
|
|
|
private Integer oxygenSaturation;
|
|
|
- private String oxygenSaturationCreateDate;
|
|
|
+ private Date oxygenSaturationCreateDate;
|
|
|
private Integer pulseRate;
|
|
|
- private String pulseRateCreateDate;
|
|
|
+ private Date pulseRateCreateDate;
|
|
|
private Integer systolicBloodPressure;
|
|
|
- private String systolicBloodPressureCreateDate;
|
|
|
+ private Date systolicBloodPressureCreateDate;
|
|
|
private Integer diastolicBloodPressure;
|
|
|
- private String diastolicBloodPressureCreateDate;
|
|
|
+ private Date diastolicBloodPressureCreateDate;
|
|
|
private Integer bloodSugar;
|
|
|
- private String bloodSugarCreateDate;
|
|
|
+ private Date bloodSugarCreateDate;
|
|
|
private int memoCount;
|
|
|
- private String symptomLastDate;
|
|
|
+ private Date symptomLastDate;
|
|
|
private String searchText;
|
|
|
private int limit;
|
|
|
private int limitMax;
|
|
@@ -64,7 +66,7 @@ public class PatientPHRLatestDTO {
|
|
|
public void setTemperature(float temperature) {
|
|
|
this.temperature = temperature;
|
|
|
}
|
|
|
- public String getTemperatureCreateDate() {
|
|
|
+ public Date getTemperatureCreateDate() {
|
|
|
return temperatureCreateDate;
|
|
|
}
|
|
|
public Integer getOxygenSaturation() {
|
|
@@ -73,7 +75,7 @@ public class PatientPHRLatestDTO {
|
|
|
public void setOxygenSaturation(int oxygenSaturation) {
|
|
|
this.oxygenSaturation = oxygenSaturation;
|
|
|
}
|
|
|
- public String getOxygenSaturationCreateDate() {
|
|
|
+ public Date getOxygenSaturationCreateDate() {
|
|
|
return oxygenSaturationCreateDate;
|
|
|
}
|
|
|
public Integer getPulseRate() {
|
|
@@ -82,7 +84,7 @@ public class PatientPHRLatestDTO {
|
|
|
public void setPulseRate(int pulseRate) {
|
|
|
this.pulseRate = pulseRate;
|
|
|
}
|
|
|
- public String getPulseRateCreateDate() {
|
|
|
+ public Date getPulseRateCreateDate() {
|
|
|
return pulseRateCreateDate;
|
|
|
}
|
|
|
public Integer getSystolicBloodPressure() {
|
|
@@ -91,7 +93,7 @@ public class PatientPHRLatestDTO {
|
|
|
public void setSystolicBloodPressure(int systolicBloodPressure) {
|
|
|
this.systolicBloodPressure = systolicBloodPressure;
|
|
|
}
|
|
|
- public String getSystolicBloodPressureCreateDate() {
|
|
|
+ public Date getSystolicBloodPressureCreateDate() {
|
|
|
return systolicBloodPressureCreateDate;
|
|
|
}
|
|
|
public Integer getDiastolicBloodPressure() {
|
|
@@ -100,7 +102,7 @@ public class PatientPHRLatestDTO {
|
|
|
public void setDiastolicBloodPressure(int diastolicBloodPressure) {
|
|
|
this.diastolicBloodPressure = diastolicBloodPressure;
|
|
|
}
|
|
|
- public String getDiastolicBloodPressureCreateDate() {
|
|
|
+ public Date getDiastolicBloodPressureCreateDate() {
|
|
|
return diastolicBloodPressureCreateDate;
|
|
|
}
|
|
|
public Integer getBloodSugar() {
|
|
@@ -109,7 +111,7 @@ public class PatientPHRLatestDTO {
|
|
|
public void setBloodSugar(int bloodSugar) {
|
|
|
this.bloodSugar = bloodSugar;
|
|
|
}
|
|
|
- public String getBloodSugarCreateDate() {
|
|
|
+ public Date getBloodSugarCreateDate() {
|
|
|
return bloodSugarCreateDate;
|
|
|
}
|
|
|
public int getMemoCount() {
|
|
@@ -118,12 +120,9 @@ public class PatientPHRLatestDTO {
|
|
|
public void setMemoCount(int memoCount) {
|
|
|
this.memoCount = memoCount;
|
|
|
}
|
|
|
- public String getSymptomLastDate() {
|
|
|
+ public Date getSymptomLastDate() {
|
|
|
return symptomLastDate;
|
|
|
}
|
|
|
- public void setSymptomLastDate(String symptomLastDate) {
|
|
|
- this.symptomLastDate = symptomLastDate;
|
|
|
- }
|
|
|
public String getSearchText() {
|
|
|
return searchText;
|
|
|
}
|