|
@@ -0,0 +1,355 @@
|
|
|
+package com.diagbot.entity;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ *
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author zhaops
|
|
|
+ * @since 2021-01-08
|
|
|
+ */
|
|
|
+@TableName("test_result_bill")
|
|
|
+public class ResultBill implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键
|
|
|
+ */
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否删除,N:未删除,Y:删除
|
|
|
+ */
|
|
|
+ private String isDeleted;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 记录创建时间
|
|
|
+ */
|
|
|
+ private LocalDateTime gmtCreate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 记录修改时间,如果时间是1970年则表示纪录未修改
|
|
|
+ */
|
|
|
+ private LocalDateTime gmtModified;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建人,0表示无创建人值
|
|
|
+ */
|
|
|
+ private String creator;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改人,如果为0则表示纪录未修改
|
|
|
+ */
|
|
|
+ private String modifier;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 测试结果id
|
|
|
+ */
|
|
|
+ private Long resultId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 开单类型(1:通用,2:输血)
|
|
|
+ */
|
|
|
+ private Integer billType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 开单项类型
|
|
|
+ */
|
|
|
+ private String billItemType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 开单项名称
|
|
|
+ */
|
|
|
+ private String billItemName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 开单项名称(医院端)
|
|
|
+ */
|
|
|
+ private String billItemHisName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 开单项名称-细项(医院端)
|
|
|
+ */
|
|
|
+ private String billItemHisDetailName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 禁忌项类型
|
|
|
+ */
|
|
|
+ private String conflictItemType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 禁忌项名称
|
|
|
+ */
|
|
|
+ private String conflictItemName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 禁忌项名称(医院端)
|
|
|
+ */
|
|
|
+ private String conflictItemHisName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 禁忌项名称-细项(医院端)
|
|
|
+ */
|
|
|
+ private String conflictItemHisDetailName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 输入值(文本/数值)
|
|
|
+ */
|
|
|
+ private String inputValue;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 参考值
|
|
|
+ */
|
|
|
+ private String referenceValue;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 参考值(最大值)
|
|
|
+ */
|
|
|
+ private BigDecimal maxValue;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 参考值(最小值)
|
|
|
+ */
|
|
|
+ private BigDecimal minValue;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 范围(0:范围内,1:范围外)
|
|
|
+ */
|
|
|
+ private Integer range;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 输出结果(提醒文本)
|
|
|
+ */
|
|
|
+ private String output;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 期望输出结果(提醒文本)
|
|
|
+ */
|
|
|
+ private String expectedOutput;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 成功标志(1:成功,0:失败)
|
|
|
+ */
|
|
|
+ private String success;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 提示信息(异常提醒)
|
|
|
+ */
|
|
|
+ private String message;
|
|
|
+
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+ 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 String getModifier() {
|
|
|
+ return modifier;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setModifier(String modifier) {
|
|
|
+ this.modifier = modifier;
|
|
|
+ }
|
|
|
+ public Long getResultId() {
|
|
|
+ return resultId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setResultId(Long resultId) {
|
|
|
+ this.resultId = resultId;
|
|
|
+ }
|
|
|
+ public Integer getBillType() {
|
|
|
+ return billType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBillType(Integer billType) {
|
|
|
+ this.billType = billType;
|
|
|
+ }
|
|
|
+ public String getBillItemType() {
|
|
|
+ return billItemType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBillItemType(String billItemType) {
|
|
|
+ this.billItemType = billItemType;
|
|
|
+ }
|
|
|
+ public String getBillItemName() {
|
|
|
+ return billItemName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBillItemName(String billItemName) {
|
|
|
+ this.billItemName = billItemName;
|
|
|
+ }
|
|
|
+ public String getBillItemHisName() {
|
|
|
+ return billItemHisName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBillItemHisName(String billItemHisName) {
|
|
|
+ this.billItemHisName = billItemHisName;
|
|
|
+ }
|
|
|
+ public String getBillItemHisDetailName() {
|
|
|
+ return billItemHisDetailName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBillItemHisDetailName(String billItemHisDetailName) {
|
|
|
+ this.billItemHisDetailName = billItemHisDetailName;
|
|
|
+ }
|
|
|
+ public String getConflictItemType() {
|
|
|
+ return conflictItemType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setConflictItemType(String conflictItemType) {
|
|
|
+ this.conflictItemType = conflictItemType;
|
|
|
+ }
|
|
|
+ public String getConflictItemName() {
|
|
|
+ return conflictItemName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setConflictItemName(String conflictItemName) {
|
|
|
+ this.conflictItemName = conflictItemName;
|
|
|
+ }
|
|
|
+ public String getConflictItemHisName() {
|
|
|
+ return conflictItemHisName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setConflictItemHisName(String conflictItemHisName) {
|
|
|
+ this.conflictItemHisName = conflictItemHisName;
|
|
|
+ }
|
|
|
+ public String getConflictItemHisDetailName() {
|
|
|
+ return conflictItemHisDetailName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setConflictItemHisDetailName(String conflictItemHisDetailName) {
|
|
|
+ this.conflictItemHisDetailName = conflictItemHisDetailName;
|
|
|
+ }
|
|
|
+ public String getInputValue() {
|
|
|
+ return inputValue;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInputValue(String inputValue) {
|
|
|
+ this.inputValue = inputValue;
|
|
|
+ }
|
|
|
+ public String getReferenceValue() {
|
|
|
+ return referenceValue;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReferenceValue(String referenceValue) {
|
|
|
+ this.referenceValue = referenceValue;
|
|
|
+ }
|
|
|
+ public BigDecimal getMaxValue() {
|
|
|
+ return maxValue;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMaxValue(BigDecimal maxValue) {
|
|
|
+ this.maxValue = maxValue;
|
|
|
+ }
|
|
|
+ public BigDecimal getMinValue() {
|
|
|
+ return minValue;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMinValue(BigDecimal minValue) {
|
|
|
+ this.minValue = minValue;
|
|
|
+ }
|
|
|
+ public Integer getRange() {
|
|
|
+ return range;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRange(Integer range) {
|
|
|
+ this.range = range;
|
|
|
+ }
|
|
|
+ public String getOutput() {
|
|
|
+ return output;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOutput(String output) {
|
|
|
+ this.output = output;
|
|
|
+ }
|
|
|
+ public String getExpectedOutput() {
|
|
|
+ return expectedOutput;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExpectedOutput(String expectedOutput) {
|
|
|
+ this.expectedOutput = expectedOutput;
|
|
|
+ }
|
|
|
+ public String getSuccess() {
|
|
|
+ return success;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSuccess(String success) {
|
|
|
+ this.success = success;
|
|
|
+ }
|
|
|
+ public String getMessage() {
|
|
|
+ return message;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMessage(String message) {
|
|
|
+ this.message = message;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return "ResultBill{" +
|
|
|
+ "id=" + id +
|
|
|
+ ", isDeleted=" + isDeleted +
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
+ ", creator=" + creator +
|
|
|
+ ", modifier=" + modifier +
|
|
|
+ ", resultId=" + resultId +
|
|
|
+ ", billType=" + billType +
|
|
|
+ ", billItemType=" + billItemType +
|
|
|
+ ", billItemName=" + billItemName +
|
|
|
+ ", billItemHisName=" + billItemHisName +
|
|
|
+ ", billItemHisDetailName=" + billItemHisDetailName +
|
|
|
+ ", conflictItemType=" + conflictItemType +
|
|
|
+ ", conflictItemName=" + conflictItemName +
|
|
|
+ ", conflictItemHisName=" + conflictItemHisName +
|
|
|
+ ", conflictItemHisDetailName=" + conflictItemHisDetailName +
|
|
|
+ ", inputValue=" + inputValue +
|
|
|
+ ", referenceValue=" + referenceValue +
|
|
|
+ ", maxValue=" + maxValue +
|
|
|
+ ", minValue=" + minValue +
|
|
|
+ ", range=" + range +
|
|
|
+ ", output=" + output +
|
|
|
+ ", expectedOutput=" + expectedOutput +
|
|
|
+ ", success=" + success +
|
|
|
+ ", message=" + message +
|
|
|
+ "}";
|
|
|
+ }
|
|
|
+}
|