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