|
@@ -2,8 +2,9 @@ package com.diagbot.entity;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
-import java.time.LocalDateTime;
|
|
|
+
|
|
|
import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -31,12 +32,12 @@ public class KlRuleBase implements Serializable {
|
|
|
/**
|
|
|
* 记录创建时间
|
|
|
*/
|
|
|
- private LocalDateTime gmtCreate;
|
|
|
+ private Date gmtCreate;
|
|
|
|
|
|
/**
|
|
|
* 记录修改时间,如果时间是1970年则表示纪录未修改
|
|
|
*/
|
|
|
- private LocalDateTime gmtModified;
|
|
|
+ private Date gmtModified;
|
|
|
|
|
|
/**
|
|
|
* 创建人,0表示无创建人值
|
|
@@ -120,6 +121,7 @@ public class KlRuleBase implements Serializable {
|
|
|
public void setId(Long id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
+
|
|
|
public String getIsDeleted() {
|
|
|
return isDeleted;
|
|
|
}
|
|
@@ -127,20 +129,23 @@ public class KlRuleBase implements Serializable {
|
|
|
public void setIsDeleted(String isDeleted) {
|
|
|
this.isDeleted = isDeleted;
|
|
|
}
|
|
|
- public LocalDateTime getGmtCreate() {
|
|
|
+
|
|
|
+ public Date getGmtCreate() {
|
|
|
return gmtCreate;
|
|
|
}
|
|
|
|
|
|
- public void setGmtCreate(LocalDateTime gmtCreate) {
|
|
|
+ public void setGmtCreate(Date gmtCreate) {
|
|
|
this.gmtCreate = gmtCreate;
|
|
|
}
|
|
|
- public LocalDateTime getGmtModified() {
|
|
|
+
|
|
|
+ public Date getGmtModified() {
|
|
|
return gmtModified;
|
|
|
}
|
|
|
|
|
|
- public void setGmtModified(LocalDateTime gmtModified) {
|
|
|
+ public void setGmtModified(Date gmtModified) {
|
|
|
this.gmtModified = gmtModified;
|
|
|
}
|
|
|
+
|
|
|
public String getCreator() {
|
|
|
return creator;
|
|
|
}
|
|
@@ -148,6 +153,7 @@ public class KlRuleBase implements Serializable {
|
|
|
public void setCreator(String creator) {
|
|
|
this.creator = creator;
|
|
|
}
|
|
|
+
|
|
|
public String getModifier() {
|
|
|
return modifier;
|
|
|
}
|
|
@@ -155,6 +161,7 @@ public class KlRuleBase implements Serializable {
|
|
|
public void setModifier(String modifier) {
|
|
|
this.modifier = modifier;
|
|
|
}
|
|
|
+
|
|
|
public Long getConceptId() {
|
|
|
return conceptId;
|
|
|
}
|
|
@@ -162,6 +169,7 @@ public class KlRuleBase implements Serializable {
|
|
|
public void setConceptId(Long conceptId) {
|
|
|
this.conceptId = conceptId;
|
|
|
}
|
|
|
+
|
|
|
public String getDescription() {
|
|
|
return description;
|
|
|
}
|
|
@@ -169,6 +177,7 @@ public class KlRuleBase implements Serializable {
|
|
|
public void setDescription(String description) {
|
|
|
this.description = description;
|
|
|
}
|
|
|
+
|
|
|
public Integer getType() {
|
|
|
return type;
|
|
|
}
|
|
@@ -176,6 +185,7 @@ public class KlRuleBase implements Serializable {
|
|
|
public void setType(Integer type) {
|
|
|
this.type = type;
|
|
|
}
|
|
|
+
|
|
|
public String getMinOperator() {
|
|
|
return minOperator;
|
|
|
}
|
|
@@ -183,6 +193,7 @@ public class KlRuleBase implements Serializable {
|
|
|
public void setMinOperator(String minOperator) {
|
|
|
this.minOperator = minOperator;
|
|
|
}
|
|
|
+
|
|
|
public String getMinValue() {
|
|
|
return minValue;
|
|
|
}
|
|
@@ -190,6 +201,7 @@ public class KlRuleBase implements Serializable {
|
|
|
public void setMinValue(String minValue) {
|
|
|
this.minValue = minValue;
|
|
|
}
|
|
|
+
|
|
|
public String getMinUnit() {
|
|
|
return minUnit;
|
|
|
}
|
|
@@ -197,6 +209,7 @@ public class KlRuleBase implements Serializable {
|
|
|
public void setMinUnit(String minUnit) {
|
|
|
this.minUnit = minUnit;
|
|
|
}
|
|
|
+
|
|
|
public String getMaxOperator() {
|
|
|
return maxOperator;
|
|
|
}
|
|
@@ -204,6 +217,7 @@ public class KlRuleBase implements Serializable {
|
|
|
public void setMaxOperator(String maxOperator) {
|
|
|
this.maxOperator = maxOperator;
|
|
|
}
|
|
|
+
|
|
|
public String getMaxValue() {
|
|
|
return maxValue;
|
|
|
}
|
|
@@ -211,6 +225,7 @@ public class KlRuleBase implements Serializable {
|
|
|
public void setMaxValue(String maxValue) {
|
|
|
this.maxValue = maxValue;
|
|
|
}
|
|
|
+
|
|
|
public String getMaxUnit() {
|
|
|
return maxUnit;
|
|
|
}
|
|
@@ -218,6 +233,7 @@ public class KlRuleBase implements Serializable {
|
|
|
public void setMaxUnit(String maxUnit) {
|
|
|
this.maxUnit = maxUnit;
|
|
|
}
|
|
|
+
|
|
|
public String getEqOperator() {
|
|
|
return eqOperator;
|
|
|
}
|
|
@@ -225,6 +241,7 @@ public class KlRuleBase implements Serializable {
|
|
|
public void setEqOperator(String eqOperator) {
|
|
|
this.eqOperator = eqOperator;
|
|
|
}
|
|
|
+
|
|
|
public String getEqValue() {
|
|
|
return eqValue;
|
|
|
}
|
|
@@ -232,6 +249,7 @@ public class KlRuleBase implements Serializable {
|
|
|
public void setEqValue(String eqValue) {
|
|
|
this.eqValue = eqValue;
|
|
|
}
|
|
|
+
|
|
|
public String getEqUnit() {
|
|
|
return eqUnit;
|
|
|
}
|
|
@@ -239,6 +257,7 @@ public class KlRuleBase implements Serializable {
|
|
|
public void setEqUnit(String eqUnit) {
|
|
|
this.eqUnit = eqUnit;
|
|
|
}
|
|
|
+
|
|
|
public Integer getStatus() {
|
|
|
return status;
|
|
|
}
|
|
@@ -250,25 +269,25 @@ public class KlRuleBase implements Serializable {
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "KlRuleBase{" +
|
|
|
- "id=" + id +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
- ", conceptId=" + conceptId +
|
|
|
- ", description=" + description +
|
|
|
- ", type=" + type +
|
|
|
- ", minOperator=" + minOperator +
|
|
|
- ", minValue=" + minValue +
|
|
|
- ", minUnit=" + minUnit +
|
|
|
- ", maxOperator=" + maxOperator +
|
|
|
- ", maxValue=" + maxValue +
|
|
|
- ", maxUnit=" + maxUnit +
|
|
|
- ", eqOperator=" + eqOperator +
|
|
|
- ", eqValue=" + eqValue +
|
|
|
- ", eqUnit=" + eqUnit +
|
|
|
- ", status=" + status +
|
|
|
- "}";
|
|
|
+ "id=" + id +
|
|
|
+ ", isDeleted=" + isDeleted +
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
+ ", creator=" + creator +
|
|
|
+ ", modifier=" + modifier +
|
|
|
+ ", conceptId=" + conceptId +
|
|
|
+ ", description=" + description +
|
|
|
+ ", type=" + type +
|
|
|
+ ", minOperator=" + minOperator +
|
|
|
+ ", minValue=" + minValue +
|
|
|
+ ", minUnit=" + minUnit +
|
|
|
+ ", maxOperator=" + maxOperator +
|
|
|
+ ", maxValue=" + maxValue +
|
|
|
+ ", maxUnit=" + maxUnit +
|
|
|
+ ", eqOperator=" + eqOperator +
|
|
|
+ ", eqValue=" + eqValue +
|
|
|
+ ", eqUnit=" + eqUnit +
|
|
|
+ ", status=" + status +
|
|
|
+ "}";
|
|
|
}
|
|
|
}
|