|
@@ -16,29 +16,29 @@ public class Rule {
|
|
|
// 小类名称
|
|
|
private String idx_name = "";
|
|
|
// 大类名称是否参与比较 1-参与
|
|
|
- private String set_status = "";
|
|
|
+ private String set_name_check = "";
|
|
|
+ // 最小值比较符
|
|
|
+ private String min_operator = "";
|
|
|
// 最小值
|
|
|
private String min_value = "";
|
|
|
- // 最小值对应的标准文本
|
|
|
- private String min_concept_text = "";
|
|
|
+ // 最小值单位
|
|
|
+ private String min_unit = "";
|
|
|
+ // 最大值比较符
|
|
|
+ private String max_operator = "";
|
|
|
// 最大值
|
|
|
private String max_value = "";
|
|
|
- // 最小值对应的标准文本
|
|
|
- private String max_concept_text = "";
|
|
|
+ // 最大值单位
|
|
|
+ private String max_unit = "";
|
|
|
// 标准值 用作等于
|
|
|
- private String set_value = "";
|
|
|
- //转后标准术语
|
|
|
- private String set_concept_text = "";
|
|
|
- // 单位
|
|
|
- private String unit = "";
|
|
|
- //危机标识 用作危机值提醒
|
|
|
- private String type_value = "";
|
|
|
+ private String eq_operator = "";
|
|
|
+ // 标准值
|
|
|
+ private String eq_value = "";
|
|
|
+ // 标准值单位
|
|
|
+ private String eq_unit = "";
|
|
|
//提醒信息
|
|
|
- private String minRemind = "";
|
|
|
+ private String remind = "";
|
|
|
//提醒信息
|
|
|
- private String maxRemind = "";
|
|
|
- //提醒信息
|
|
|
- private String setRemind = "";
|
|
|
+
|
|
|
|
|
|
public String getSet_name() {
|
|
|
return set_name;
|
|
@@ -56,99 +56,91 @@ public class Rule {
|
|
|
this.idx_name = idx_name;
|
|
|
}
|
|
|
|
|
|
- public String getSet_status() {
|
|
|
- return set_status;
|
|
|
+ public String getSet_name_check() {
|
|
|
+ return set_name_check;
|
|
|
}
|
|
|
|
|
|
- public void setSet_status(String set_status) {
|
|
|
- this.set_status = set_status;
|
|
|
+ public void setSet_name_check(String set_name_check) {
|
|
|
+ this.set_name_check = set_name_check;
|
|
|
}
|
|
|
|
|
|
- public String getMin_value() {
|
|
|
- return min_value;
|
|
|
+ public String getMin_operator() {
|
|
|
+ return min_operator;
|
|
|
}
|
|
|
|
|
|
- public void setMin_value(String min_value) {
|
|
|
- this.min_value = min_value;
|
|
|
+ public void setMin_operator(String min_operator) {
|
|
|
+ this.min_operator = min_operator;
|
|
|
}
|
|
|
|
|
|
- public String getMin_concept_text() {
|
|
|
- return min_concept_text;
|
|
|
- }
|
|
|
-
|
|
|
- public void setMin_concept_text(String min_concept_text) {
|
|
|
- this.min_concept_text = min_concept_text;
|
|
|
- }
|
|
|
-
|
|
|
- public String getMax_value() {
|
|
|
- return max_value;
|
|
|
+ public String getMin_value() {
|
|
|
+ return min_value;
|
|
|
}
|
|
|
|
|
|
- public void setMax_value(String max_value) {
|
|
|
- this.max_value = max_value;
|
|
|
+ public void setMin_value(String min_value) {
|
|
|
+ this.min_value = min_value;
|
|
|
}
|
|
|
|
|
|
- public String getMax_concept_text() {
|
|
|
- return max_concept_text;
|
|
|
+ public String getMin_unit() {
|
|
|
+ return min_unit;
|
|
|
}
|
|
|
|
|
|
- public void setMax_concept_text(String max_concept_text) {
|
|
|
- this.max_concept_text = max_concept_text;
|
|
|
+ public void setMin_unit(String min_unit) {
|
|
|
+ this.min_unit = min_unit;
|
|
|
}
|
|
|
|
|
|
- public String getSet_value() {
|
|
|
- return set_value;
|
|
|
+ public String getMax_operator() {
|
|
|
+ return max_operator;
|
|
|
}
|
|
|
|
|
|
- public void setSet_value(String set_value) {
|
|
|
- this.set_value = set_value;
|
|
|
+ public void setMax_operator(String max_operator) {
|
|
|
+ this.max_operator = max_operator;
|
|
|
}
|
|
|
|
|
|
- public String getSet_concept_text() {
|
|
|
- return set_concept_text;
|
|
|
+ public String getMax_value() {
|
|
|
+ return max_value;
|
|
|
}
|
|
|
|
|
|
- public void setSet_concept_text(String set_concept_text) {
|
|
|
- this.set_concept_text = set_concept_text;
|
|
|
+ public void setMax_value(String max_value) {
|
|
|
+ this.max_value = max_value;
|
|
|
}
|
|
|
|
|
|
- public String getUnit() {
|
|
|
- return unit;
|
|
|
+ public String getMax_unit() {
|
|
|
+ return max_unit;
|
|
|
}
|
|
|
|
|
|
- public void setUnit(String unit) {
|
|
|
- this.unit = unit;
|
|
|
+ public void setMax_unit(String max_unit) {
|
|
|
+ this.max_unit = max_unit;
|
|
|
}
|
|
|
|
|
|
- public String getType_value() {
|
|
|
- return type_value;
|
|
|
+ public String getEq_operator() {
|
|
|
+ return eq_operator;
|
|
|
}
|
|
|
|
|
|
- public void setType_value(String type_value) {
|
|
|
- this.type_value = type_value;
|
|
|
+ public void setEq_operator(String eq_operator) {
|
|
|
+ this.eq_operator = eq_operator;
|
|
|
}
|
|
|
|
|
|
- public String getMinRemind() {
|
|
|
- return minRemind;
|
|
|
+ public String getEq_value() {
|
|
|
+ return eq_value;
|
|
|
}
|
|
|
|
|
|
- public void setMinRemind(String minRemind) {
|
|
|
- this.minRemind = minRemind;
|
|
|
+ public void setEq_value(String eq_value) {
|
|
|
+ this.eq_value = eq_value;
|
|
|
}
|
|
|
|
|
|
- public String getMaxRemind() {
|
|
|
- return maxRemind;
|
|
|
+ public String getEq_unit() {
|
|
|
+ return eq_unit;
|
|
|
}
|
|
|
|
|
|
- public void setMaxRemind(String maxRemind) {
|
|
|
- this.maxRemind = maxRemind;
|
|
|
+ public void setEq_unit(String eq_unit) {
|
|
|
+ this.eq_unit = eq_unit;
|
|
|
}
|
|
|
|
|
|
- public String getSetRemind() {
|
|
|
- return setRemind;
|
|
|
+ public String getRemind() {
|
|
|
+ return remind;
|
|
|
}
|
|
|
|
|
|
- public void setSetRemind(String setRemind) {
|
|
|
- this.setRemind = setRemind;
|
|
|
+ public void setRemind(String remind) {
|
|
|
+ this.remind = remind;
|
|
|
}
|
|
|
}
|