|
@@ -45,6 +45,11 @@ public class MedLisResultDTO implements Serializable {
|
|
|
*/
|
|
|
private String repName;
|
|
|
|
|
|
+ /**
|
|
|
+ * 报告名称
|
|
|
+ */
|
|
|
+ private String itemName;
|
|
|
+
|
|
|
/**
|
|
|
* 检验结果
|
|
|
*/
|
|
@@ -105,155 +110,185 @@ public class MedLisResultDTO implements Serializable {
|
|
|
*/
|
|
|
private String modifier;
|
|
|
|
|
|
- public static long getSerialVersionUID() {
|
|
|
- return serialVersionUID;
|
|
|
+ public MedLisResultDTO(String repNo, Integer hospitalId, String behospitalCode, String itemCode, String reportName, String repName, String itemName, String result, String reference, String referenceMin, String referenceMax, String unit, String abnormal, String color, String isDeleted, LocalDateTime gmtCreate, LocalDateTime gmtModified, String creator, String modifier) {
|
|
|
+ this.repNo = repNo;
|
|
|
+ this.hospitalId = hospitalId;
|
|
|
+ this.behospitalCode = behospitalCode;
|
|
|
+ this.itemCode = itemCode;
|
|
|
+ this.reportName = reportName;
|
|
|
+ this.repName = repName;
|
|
|
+ this.itemName = itemName;
|
|
|
+ this.result = result;
|
|
|
+ this.reference = reference;
|
|
|
+ this.referenceMin = referenceMin;
|
|
|
+ this.referenceMax = referenceMax;
|
|
|
+ this.unit = unit;
|
|
|
+ this.abnormal = abnormal;
|
|
|
+ this.color = color;
|
|
|
+ this.isDeleted = isDeleted;
|
|
|
+ this.gmtCreate = gmtCreate;
|
|
|
+ this.gmtModified = gmtModified;
|
|
|
+ this.creator = creator;
|
|
|
+ this.modifier = modifier;
|
|
|
}
|
|
|
|
|
|
- public String getRepNo() {
|
|
|
- return repNo;
|
|
|
+ public MedLisResultDTO() {
|
|
|
}
|
|
|
|
|
|
public void setRepNo(String repNo) {
|
|
|
this.repNo = repNo;
|
|
|
}
|
|
|
|
|
|
- public Integer getHospitalId() {
|
|
|
- return hospitalId;
|
|
|
- }
|
|
|
-
|
|
|
public void setHospitalId(Integer hospitalId) {
|
|
|
this.hospitalId = hospitalId;
|
|
|
}
|
|
|
|
|
|
- public String getBehospitalCode() {
|
|
|
- return behospitalCode;
|
|
|
- }
|
|
|
-
|
|
|
public void setBehospitalCode(String behospitalCode) {
|
|
|
this.behospitalCode = behospitalCode;
|
|
|
}
|
|
|
|
|
|
- public String getItemCode() {
|
|
|
- return itemCode;
|
|
|
- }
|
|
|
-
|
|
|
public void setItemCode(String itemCode) {
|
|
|
this.itemCode = itemCode;
|
|
|
}
|
|
|
|
|
|
- public String getModifier() {
|
|
|
- return modifier;
|
|
|
+ public void setReportName(String reportName) {
|
|
|
+ this.reportName = reportName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRepName(String repName) {
|
|
|
+ this.repName = repName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setItemName(String itemName) {
|
|
|
+ this.itemName = itemName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setResult(String result) {
|
|
|
+ this.result = result;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReference(String reference) {
|
|
|
+ this.reference = reference;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReferenceMin(String referenceMin) {
|
|
|
+ this.referenceMin = referenceMin;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReferenceMax(String referenceMax) {
|
|
|
+ this.referenceMax = referenceMax;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUnit(String unit) {
|
|
|
+ this.unit = unit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAbnormal(String abnormal) {
|
|
|
+ this.abnormal = abnormal;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setColor(String color) {
|
|
|
+ this.color = color;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsDeleted(String isDeleted) {
|
|
|
+ this.isDeleted = isDeleted;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGmtCreate(LocalDateTime gmtCreate) {
|
|
|
+ this.gmtCreate = gmtCreate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGmtModified(LocalDateTime gmtModified) {
|
|
|
+ this.gmtModified = gmtModified;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreator(String creator) {
|
|
|
+ this.creator = creator;
|
|
|
}
|
|
|
|
|
|
public void setModifier(String modifier) {
|
|
|
this.modifier = modifier;
|
|
|
}
|
|
|
|
|
|
- public String getReportName() {
|
|
|
- return reportName;
|
|
|
+ public static long getSerialVersionUID() {
|
|
|
+ return serialVersionUID;
|
|
|
}
|
|
|
|
|
|
- public void setReportName(String reportName) {
|
|
|
- this.reportName = reportName;
|
|
|
+ public String getRepNo() {
|
|
|
+ return repNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getHospitalId() {
|
|
|
+ return hospitalId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBehospitalCode() {
|
|
|
+ return behospitalCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getItemCode() {
|
|
|
+ return itemCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getReportName() {
|
|
|
+ return reportName;
|
|
|
}
|
|
|
|
|
|
public String getRepName() {
|
|
|
return repName;
|
|
|
}
|
|
|
|
|
|
- public void setRepName(String repName) {
|
|
|
- this.repName = repName;
|
|
|
+ public String getItemName() {
|
|
|
+ return itemName;
|
|
|
}
|
|
|
|
|
|
public String getResult() {
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
- public void setResult(String result) {
|
|
|
- this.result = result;
|
|
|
- }
|
|
|
-
|
|
|
public String getReference() {
|
|
|
return reference;
|
|
|
}
|
|
|
|
|
|
- public void setReference(String reference) {
|
|
|
- this.reference = reference;
|
|
|
- }
|
|
|
-
|
|
|
public String getReferenceMin() {
|
|
|
return referenceMin;
|
|
|
}
|
|
|
|
|
|
- public void setReferenceMin(String referenceMin) {
|
|
|
- this.referenceMin = referenceMin;
|
|
|
- }
|
|
|
-
|
|
|
public String getReferenceMax() {
|
|
|
return referenceMax;
|
|
|
}
|
|
|
|
|
|
- public void setReferenceMax(String referenceMax) {
|
|
|
- this.referenceMax = referenceMax;
|
|
|
- }
|
|
|
-
|
|
|
public String getUnit() {
|
|
|
return unit;
|
|
|
}
|
|
|
|
|
|
- public void setUnit(String unit) {
|
|
|
- this.unit = unit;
|
|
|
- }
|
|
|
-
|
|
|
public String getAbnormal() {
|
|
|
return abnormal;
|
|
|
}
|
|
|
|
|
|
- public void setAbnormal(String abnormal) {
|
|
|
- this.abnormal = abnormal;
|
|
|
- }
|
|
|
-
|
|
|
public String getColor() {
|
|
|
return color;
|
|
|
}
|
|
|
|
|
|
- public void setColor(String color) {
|
|
|
- this.color = color;
|
|
|
- }
|
|
|
-
|
|
|
public String getIsDeleted() {
|
|
|
return isDeleted;
|
|
|
}
|
|
|
|
|
|
- public void setIsDeleted(String isDeleted) {
|
|
|
- this.isDeleted = isDeleted;
|
|
|
- }
|
|
|
-
|
|
|
public LocalDateTime getGmtCreate() {
|
|
|
return gmtCreate;
|
|
|
}
|
|
|
|
|
|
- public void setGmtCreate(LocalDateTime gmtCreate) {
|
|
|
- this.gmtCreate = gmtCreate;
|
|
|
- }
|
|
|
-
|
|
|
public LocalDateTime getGmtModified() {
|
|
|
return gmtModified;
|
|
|
}
|
|
|
|
|
|
- public void setGmtModified(LocalDateTime gmtModified) {
|
|
|
- this.gmtModified = gmtModified;
|
|
|
- }
|
|
|
-
|
|
|
public String getCreator() {
|
|
|
return creator;
|
|
|
}
|
|
|
|
|
|
- public void setCreator(String creator) {
|
|
|
- this.creator = creator;
|
|
|
- }
|
|
|
-
|
|
|
- public MedLisResultDTO() {
|
|
|
+ public String getModifier() {
|
|
|
+ return modifier;
|
|
|
}
|
|
|
|
|
|
@Override
|
|
@@ -265,6 +300,7 @@ public class MedLisResultDTO implements Serializable {
|
|
|
", itemCode='" + itemCode + '\'' +
|
|
|
", reportName='" + reportName + '\'' +
|
|
|
", repName='" + repName + '\'' +
|
|
|
+ ", itemName='" + itemName + '\'' +
|
|
|
", result='" + result + '\'' +
|
|
|
", reference='" + reference + '\'' +
|
|
|
", referenceMin='" + referenceMin + '\'' +
|