|
@@ -11,8 +11,8 @@ import java.util.Date;
|
|
|
* 规则条件表
|
|
|
* </p>
|
|
|
*
|
|
|
- * @author gaodm
|
|
|
- * @since 2021-01-21
|
|
|
+ * @author zhoutg
|
|
|
+ * @since 2021-07-27
|
|
|
*/
|
|
|
public class KlRuleCondition implements Serializable {
|
|
|
|
|
@@ -50,7 +50,7 @@ public class KlRuleCondition implements Serializable {
|
|
|
private String modifier;
|
|
|
|
|
|
/**
|
|
|
- * 提示概念id
|
|
|
+ * 规则主表id
|
|
|
*/
|
|
|
private Long ruleId;
|
|
|
|
|
@@ -60,10 +60,15 @@ public class KlRuleCondition implements Serializable {
|
|
|
private Integer groupType;
|
|
|
|
|
|
/**
|
|
|
- * 提示概念id
|
|
|
+ * 基础规则id
|
|
|
*/
|
|
|
private Long ruleBaseId;
|
|
|
|
|
|
+ /**
|
|
|
+ * 附加信息
|
|
|
+ */
|
|
|
+ private String msg;
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
@@ -136,6 +141,14 @@ public class KlRuleCondition implements Serializable {
|
|
|
this.ruleBaseId = ruleBaseId;
|
|
|
}
|
|
|
|
|
|
+ public String getMsg() {
|
|
|
+ return msg;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMsg(String msg) {
|
|
|
+ this.msg = msg;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "KlRuleCondition{" +
|
|
@@ -148,6 +161,7 @@ public class KlRuleCondition implements Serializable {
|
|
|
", ruleId=" + ruleId +
|
|
|
", groupType=" + groupType +
|
|
|
", ruleBaseId=" + ruleBaseId +
|
|
|
+ ", msg=" + msg +
|
|
|
"}";
|
|
|
}
|
|
|
}
|