|
@@ -32,6 +32,12 @@ public class SearchData {
|
|
protected String diag = "";
|
|
protected String diag = "";
|
|
protected String past = "";
|
|
protected String past = "";
|
|
protected String other = "";
|
|
protected String other = "";
|
|
|
|
+ //当前开单lis项目
|
|
|
|
+ protected String lisOrder = "";
|
|
|
|
+ //当前开单pacs项目
|
|
|
|
+ protected String pacsOrder = "";
|
|
|
|
+ //当前开单其他 预留
|
|
|
|
+ protected String otherOrder = "";
|
|
//大数据推送诊断结果信息
|
|
//大数据推送诊断结果信息
|
|
protected List<FeatureRate> pushDiags = new ArrayList<>();
|
|
protected List<FeatureRate> pushDiags = new ArrayList<>();
|
|
|
|
|
|
@@ -262,4 +268,28 @@ public class SearchData {
|
|
public void setGraphInputs(Map<String, Map<String, String>> graphInputs) {
|
|
public void setGraphInputs(Map<String, Map<String, String>> graphInputs) {
|
|
this.graphInputs = graphInputs;
|
|
this.graphInputs = graphInputs;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public String getLisOrder() {
|
|
|
|
+ return lisOrder;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setLisOrder(String lisOrder) {
|
|
|
|
+ this.lisOrder = lisOrder;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getPacsOrder() {
|
|
|
|
+ return pacsOrder;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPacsOrder(String pacsOrder) {
|
|
|
|
+ this.pacsOrder = pacsOrder;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getOtherOrder() {
|
|
|
|
+ return otherOrder;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setOtherOrder(String otherOrder) {
|
|
|
|
+ this.otherOrder = otherOrder;
|
|
|
|
+ }
|
|
}
|
|
}
|