|
@@ -12,7 +12,7 @@ import java.util.Date;
|
|
|
* </p>
|
|
|
*
|
|
|
* @author gaodm
|
|
|
- * @since 2021-01-25
|
|
|
+ * @since 2021-01-26
|
|
|
*/
|
|
|
public class KlRule implements Serializable {
|
|
|
|
|
@@ -64,6 +64,11 @@ public class KlRule implements Serializable {
|
|
|
*/
|
|
|
private Integer ruleType;
|
|
|
|
|
|
+ /**
|
|
|
+ * 是否有子条件(0:无,1:有)
|
|
|
+ */
|
|
|
+ private Integer hasSubCond;
|
|
|
+
|
|
|
/**
|
|
|
* 启用状态(0:禁用,1:启用)
|
|
|
*/
|
|
@@ -146,6 +151,14 @@ public class KlRule implements Serializable {
|
|
|
this.ruleType = ruleType;
|
|
|
}
|
|
|
|
|
|
+ public Integer getHasSubCond() {
|
|
|
+ return hasSubCond;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHasSubCond(Integer hasSubCond) {
|
|
|
+ this.hasSubCond = hasSubCond;
|
|
|
+ }
|
|
|
+
|
|
|
public Integer getStatus() {
|
|
|
return status;
|
|
|
}
|
|
@@ -174,6 +187,7 @@ public class KlRule implements Serializable {
|
|
|
", conceptId=" + conceptId +
|
|
|
", description=" + description +
|
|
|
", ruleType=" + ruleType +
|
|
|
+ ", hasSubCond=" + hasSubCond +
|
|
|
", status=" + status +
|
|
|
", msg=" + msg +
|
|
|
"}";
|