|
@@ -63,9 +63,14 @@ public class CasesEntryHospital implements Serializable {
|
|
|
private Long hospitalId;
|
|
|
|
|
|
/**
|
|
|
- * 扣分值
|
|
|
+ * 终末扣分值
|
|
|
*/
|
|
|
private BigDecimal score;
|
|
|
+ /**
|
|
|
+ * 运行扣分值
|
|
|
+ */
|
|
|
+ private BigDecimal scoreRun;
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 条目提示信息
|
|
@@ -73,10 +78,15 @@ public class CasesEntryHospital implements Serializable {
|
|
|
private String msg;
|
|
|
|
|
|
/**
|
|
|
- * 0-未启用 1-启用
|
|
|
+ * 终末质控0-未启用 1-启用
|
|
|
*/
|
|
|
private Integer isUsed;
|
|
|
|
|
|
+ /**
|
|
|
+ * 运行质控0-未启用 1-启用
|
|
|
+ */
|
|
|
+ private Integer isUsedRun;
|
|
|
+
|
|
|
/**
|
|
|
* 单项否决(1-单项否决 0-非)
|
|
|
*/
|
|
@@ -175,26 +185,44 @@ public class CasesEntryHospital implements Serializable {
|
|
|
return remark;
|
|
|
}
|
|
|
|
|
|
+ public BigDecimal getScoreRun() {
|
|
|
+ return scoreRun;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setScoreRun(BigDecimal scoreRun) {
|
|
|
+ this.scoreRun = scoreRun;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getIsUsedRun() {
|
|
|
+ return isUsedRun;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsUsedRun(Integer isUsedRun) {
|
|
|
+ this.isUsedRun = isUsedRun;
|
|
|
+ }
|
|
|
+
|
|
|
public void setRemark(String remark) {
|
|
|
this.remark = remark;
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
- return "QcCasesEntryHospital{" +
|
|
|
+ return "CasesEntryHospital{" +
|
|
|
"id=" + id +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
+ ", isDeleted='" + isDeleted + '\'' +
|
|
|
", gmtCreate=" + gmtCreate +
|
|
|
", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
+ ", creator='" + creator + '\'' +
|
|
|
+ ", modifier='" + modifier + '\'' +
|
|
|
", casesEntryId=" + casesEntryId +
|
|
|
", hospitalId=" + hospitalId +
|
|
|
", score=" + score +
|
|
|
- ", msg=" + msg +
|
|
|
+ ", scoreRun=" + scoreRun +
|
|
|
+ ", msg='" + msg + '\'' +
|
|
|
", isUsed=" + isUsed +
|
|
|
+ ", isUsedRun=" + isUsedRun +
|
|
|
", isReject=" + isReject +
|
|
|
- ", remark=" + remark +
|
|
|
- "}";
|
|
|
+ ", remark='" + remark + '\'' +
|
|
|
+ '}';
|
|
|
}
|
|
|
}
|