|
@@ -1,13 +1,13 @@
|
|
package com.diagbot.entity;
|
|
package com.diagbot.entity;
|
|
|
|
|
|
-import java.math.BigDecimal;
|
|
|
|
-
|
|
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
-import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
-import java.util.Date;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
+
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
|
|
+import java.math.BigDecimal;
|
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
/**
|
|
* <p>
|
|
* <p>
|
|
@@ -116,7 +116,7 @@ public class ResultRule implements Serializable {
|
|
/**
|
|
/**
|
|
* 基础规则类型(1:开单外等于术语本身;2:开单外存在比较;3:开单外不等于术语本身;4:过敏原;5:开单项;6:检查结果正则表达式)
|
|
* 基础规则类型(1:开单外等于术语本身;2:开单外存在比较;3:开单外不等于术语本身;4:过敏原;5:开单项;6:检查结果正则表达式)
|
|
*/
|
|
*/
|
|
- @Excel(name = "基础规则类型", width = 40, orderNum = "1",replace = {"开单外等于术语本身_1","开单外存在比较_2","开单外不等于术语本身_3","过敏原_4","开单项_5","检查结果正则表达式_6"})
|
|
|
|
|
|
+ @Excel(name = "基础规则类型", width = 40, orderNum = "1", replace = { "_null", "开单外等于术语本身_1", "开单外存在比较_2", "开单外不等于术语本身_3", "过敏原_4", "开单项_5", "检查结果正则表达式_6" })
|
|
private Integer ruleBaseType;
|
|
private Integer ruleBaseType;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -127,25 +127,25 @@ public class ResultRule implements Serializable {
|
|
/**
|
|
/**
|
|
* 禁忌项类型(名称)
|
|
* 禁忌项类型(名称)
|
|
*/
|
|
*/
|
|
- @Excel(name = "基础规则术语类型", width = 40, orderNum = "2")
|
|
|
|
|
|
+ @Excel(name = "基础规则术语类型", width = 40, replace = { "_null" }, orderNum = "2")
|
|
private String ruleBaseLibTypeName;
|
|
private String ruleBaseLibTypeName;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 禁忌项名称
|
|
* 禁忌项名称
|
|
*/
|
|
*/
|
|
- @Excel(name = "基础规则医学标准术语", width = 40, orderNum = "3")
|
|
|
|
|
|
+ @Excel(name = "基础规则医学标准术语", width = 40, replace = { "_null" }, orderNum = "3")
|
|
private String ruleBaseLibName;
|
|
private String ruleBaseLibName;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 禁忌项名称(医院端)
|
|
* 禁忌项名称(医院端)
|
|
*/
|
|
*/
|
|
- @Excel(name = "基础规则医院术语", width = 40, orderNum = "4")
|
|
|
|
|
|
+ @Excel(name = "基础规则医院术语", width = 40, replace = { "_null" }, orderNum = "4")
|
|
private String ruleBaseHisName;
|
|
private String ruleBaseHisName;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 禁忌项名称-细项(医院端)
|
|
* 禁忌项名称-细项(医院端)
|
|
*/
|
|
*/
|
|
- @Excel(name = "基础规则医院术语细则", width = 40, orderNum = "5")
|
|
|
|
|
|
+ @Excel(name = "基础规则医院术语细则", width = 40, replace = { "_null" }, orderNum = "5")
|
|
private String ruleBaseHisDetailName;
|
|
private String ruleBaseHisDetailName;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -166,13 +166,13 @@ public class ResultRule implements Serializable {
|
|
/**
|
|
/**
|
|
* 禁忌项输入值(文本/数值)
|
|
* 禁忌项输入值(文本/数值)
|
|
*/
|
|
*/
|
|
- @Excel(name = "基础规则输入值", width = 40, orderNum = "6")
|
|
|
|
|
|
+ @Excel(name = "基础规则输入值", width = 40, replace = { "_null" }, orderNum = "6")
|
|
private String ruleBaseInputValue;
|
|
private String ruleBaseInputValue;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 参考值(参考范围拼接/药品分类保存)
|
|
* 参考值(参考范围拼接/药品分类保存)
|
|
*/
|
|
*/
|
|
- @Excel(name = "基础规则参考值", width = 40, orderNum = "7")
|
|
|
|
|
|
+ @Excel(name = "基础规则参考值", width = 40, replace = { "_null" }, orderNum = "7")
|
|
private String referenceValue;
|
|
private String referenceValue;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -539,4 +539,4 @@ public class ResultRule implements Serializable {
|
|
", ruleMsg=" + ruleMsg +
|
|
", ruleMsg=" + ruleMsg +
|
|
"}";
|
|
"}";
|
|
}
|
|
}
|
|
-}
|
|
|
|
|
|
+}
|