|
@@ -61,20 +61,29 @@ public class QcCasesEntryHospital implements Serializable {
|
|
|
private Long hospitalId;
|
|
|
|
|
|
/**
|
|
|
- * 扣分值
|
|
|
+ * 终末扣分值
|
|
|
*/
|
|
|
private BigDecimal score;
|
|
|
|
|
|
+ /**
|
|
|
+ * 运行扣分值
|
|
|
+ */
|
|
|
+ private BigDecimal scoreRun;
|
|
|
+
|
|
|
/**
|
|
|
* 条目提示信息
|
|
|
*/
|
|
|
private String msg;
|
|
|
|
|
|
/**
|
|
|
- * 0-未启用 1-启用
|
|
|
+ * 终末质控0-未启用 1-启用
|
|
|
*/
|
|
|
private Integer isUsed;
|
|
|
|
|
|
+ /**
|
|
|
+ * 运行质控0-未启用 1-启用
|
|
|
+ */
|
|
|
+ private Integer isUsedRun;
|
|
|
/**
|
|
|
* 单项否决(1-单项否决 0-非)
|
|
|
*/
|
|
@@ -177,22 +186,40 @@ public class QcCasesEntryHospital implements Serializable {
|
|
|
this.remark = 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;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "QcCasesEntryHospital{" +
|
|
|
- "id=" + id +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
- ", casesEntryId=" + casesEntryId +
|
|
|
- ", hospitalId=" + hospitalId +
|
|
|
- ", score=" + score +
|
|
|
- ", msg=" + msg +
|
|
|
- ", isUsed=" + isUsed +
|
|
|
- ", isReject=" + isReject +
|
|
|
- ", remark=" + remark +
|
|
|
- "}";
|
|
|
+ "id=" + id +
|
|
|
+ ", isDeleted='" + isDeleted + '\'' +
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
+ ", creator='" + creator + '\'' +
|
|
|
+ ", modifier='" + modifier + '\'' +
|
|
|
+ ", casesEntryId=" + casesEntryId +
|
|
|
+ ", hospitalId=" + hospitalId +
|
|
|
+ ", score=" + score +
|
|
|
+ ", scoreRun=" + scoreRun +
|
|
|
+ ", msg='" + msg + '\'' +
|
|
|
+ ", isUsed=" + isUsed +
|
|
|
+ ", isUsedRun=" + isUsedRun +
|
|
|
+ ", isReject=" + isReject +
|
|
|
+ ", remark='" + remark + '\'' +
|
|
|
+ '}';
|
|
|
}
|
|
|
}
|