|
@@ -2,6 +2,8 @@ package com.diagbot.entity;
|
|
|
|
|
|
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 lombok.Getter;
|
|
|
|
+import lombok.Setter;
|
|
|
|
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
import java.util.Date;
|
|
@@ -14,6 +16,8 @@ import java.util.Date;
|
|
* @author gaodm
|
|
* @author gaodm
|
|
* @since 2021-03-15
|
|
* @since 2021-03-15
|
|
*/
|
|
*/
|
|
|
|
+@Getter
|
|
|
|
+@Setter
|
|
public class KlDiagnoseCondition implements Serializable {
|
|
public class KlDiagnoseCondition implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
private static final long serialVersionUID = 1L;
|
|
@@ -77,119 +81,5 @@ public class KlDiagnoseCondition implements Serializable {
|
|
/**
|
|
/**
|
|
* 基础规则id(condition_type为1:基础条件有效)
|
|
* 基础规则id(condition_type为1:基础条件有效)
|
|
*/
|
|
*/
|
|
- private Long ruleBaseId;
|
|
|
|
-
|
|
|
|
- public Long getId() {
|
|
|
|
- return id;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setId(Long id) {
|
|
|
|
- this.id = id;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getIsDeleted() {
|
|
|
|
- return isDeleted;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setIsDeleted(String isDeleted) {
|
|
|
|
- this.isDeleted = isDeleted;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Date getGmtCreate() {
|
|
|
|
- return gmtCreate;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setGmtCreate(Date gmtCreate) {
|
|
|
|
- this.gmtCreate = gmtCreate;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Date getGmtModified() {
|
|
|
|
- return gmtModified;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setGmtModified(Date gmtModified) {
|
|
|
|
- this.gmtModified = gmtModified;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getCreator() {
|
|
|
|
- return creator;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCreator(String creator) {
|
|
|
|
- this.creator = creator;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getModifier() {
|
|
|
|
- return modifier;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setModifier(String modifier) {
|
|
|
|
- this.modifier = modifier;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getDiagnoseId() {
|
|
|
|
- return diagnoseId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setDiagnoseId(Long diagnoseId) {
|
|
|
|
- this.diagnoseId = diagnoseId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getConditionType() {
|
|
|
|
- return conditionType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setConditionType(Integer conditionType) {
|
|
|
|
- this.conditionType = conditionType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getConditionGroup() {
|
|
|
|
- return conditionGroup;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setConditionGroup(Integer conditionGroup) {
|
|
|
|
- this.conditionGroup = conditionGroup;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getFitNo() {
|
|
|
|
- return fitNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setFitNo(Integer fitNo) {
|
|
|
|
- this.fitNo = fitNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getBaseGroup() {
|
|
|
|
- return baseGroup;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setBaseGroup(Integer baseGroup) {
|
|
|
|
- this.baseGroup = baseGroup;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getRuleBaseId() {
|
|
|
|
- return ruleBaseId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setRuleBaseId(Long ruleBaseId) {
|
|
|
|
- this.ruleBaseId = ruleBaseId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- @Override
|
|
|
|
- public String toString() {
|
|
|
|
- return "KlDiagnoseCondition{" +
|
|
|
|
- "id=" + id +
|
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
|
- ", creator=" + creator +
|
|
|
|
- ", modifier=" + modifier +
|
|
|
|
- ", diagnoseId=" + diagnoseId +
|
|
|
|
- ", conditionType=" + conditionType +
|
|
|
|
- ", conditionGroup=" + conditionGroup +
|
|
|
|
- ", fitNo=" + fitNo +
|
|
|
|
- ", baseGroup=" + baseGroup +
|
|
|
|
- ", ruleBaseId=" + ruleBaseId +
|
|
|
|
- "}";
|
|
|
|
- }
|
|
|
|
|
|
+ private Long diagnoseBaseId;
|
|
}
|
|
}
|