|
@@ -1,5 +1,7 @@
|
|
|
package com.diagbot.vo;
|
|
|
|
|
|
+import com.diagbot.entity.node.BillConcept;
|
|
|
+import com.diagbot.entity.node.BillCondition;
|
|
|
import lombok.Getter;
|
|
|
import lombok.Setter;
|
|
|
|
|
@@ -11,15 +13,13 @@ import lombok.Setter;
|
|
|
@Getter
|
|
|
@Setter
|
|
|
public class BillSaveVO {
|
|
|
- private String ruleType;
|
|
|
private Integer type;
|
|
|
- private Long conceptId;
|
|
|
+ private BillConcept concept;
|
|
|
+
|
|
|
private Long relationId;
|
|
|
- private Long conditionId;
|
|
|
- private String conceptName;
|
|
|
private String relationName;
|
|
|
- private String conditionName;
|
|
|
- private String conceptLabel;
|
|
|
- private String conditionLabel;
|
|
|
- private Integer relationStatus;
|
|
|
+ private Integer relationStatus;
|
|
|
+ private String ruleType;
|
|
|
+
|
|
|
+ private BillCondition condition;
|
|
|
}
|