|
@@ -1,6 +1,8 @@
|
|
|
package com.diagbot.client.bean;
|
|
|
|
|
|
import com.diagbot.vo.LisResult;
|
|
|
+import lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.HashMap;
|
|
@@ -10,6 +12,8 @@ import java.util.Map;
|
|
|
/**
|
|
|
* Created by fyeman on 2018/1/31.
|
|
|
*/
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
public class SearchData {
|
|
|
private int length = 10;
|
|
|
private int age_start = 0;
|
|
@@ -30,7 +34,7 @@ public class SearchData {
|
|
|
private Integer disType; //0-普通病(默认不填),1-慢病,2-急诊
|
|
|
private String scaleName;
|
|
|
private List<AdverseReaction> adverseEvent;
|
|
|
- private List<IndicationResult> indications;
|
|
|
+ private String indications;
|
|
|
|
|
|
//特征类别
|
|
|
private String featureType;
|
|
@@ -47,260 +51,10 @@ public class SearchData {
|
|
|
|
|
|
private Map<String, Map<String, String>> inputs = new HashMap<>(10, 0.8f);
|
|
|
|
|
|
-
|
|
|
private List<Feature> symptomFeatureList = new ArrayList<>();
|
|
|
private List<Feature> vitalFeatureList = new ArrayList<>();
|
|
|
private List<Feature> lisFeatureList = new ArrayList<>();
|
|
|
private List<Feature> pacsFeatureList = new ArrayList<>();
|
|
|
private List<Feature> diagFeatureList = new ArrayList<>();
|
|
|
private List<Feature> symptompropertyFeatureList = new ArrayList<>();
|
|
|
-
|
|
|
- public int getLength() {
|
|
|
- return length;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLength(int length) {
|
|
|
- this.length = length;
|
|
|
- }
|
|
|
-
|
|
|
- public int getAge_start() {
|
|
|
- return age_start;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAge_start(int age_start) {
|
|
|
- this.age_start = age_start;
|
|
|
- }
|
|
|
-
|
|
|
- public int getAge_end() {
|
|
|
- return age_end;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAge_end(int age_end) {
|
|
|
- this.age_end = age_end;
|
|
|
- }
|
|
|
-
|
|
|
- public int getAge() {
|
|
|
- return age;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAge(int age) {
|
|
|
- this.age = age;
|
|
|
- }
|
|
|
-
|
|
|
- public String getSex() {
|
|
|
- return sex;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSex(String sex) {
|
|
|
- this.sex = sex;
|
|
|
- }
|
|
|
-
|
|
|
- public String getSymptom() {
|
|
|
- return symptom;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSymptom(String symptom) {
|
|
|
- this.symptom = symptom;
|
|
|
- }
|
|
|
-
|
|
|
- public String getVital() {
|
|
|
- return vital;
|
|
|
- }
|
|
|
-
|
|
|
- public void setVital(String vital) {
|
|
|
- this.vital = vital;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLis() {
|
|
|
- return lis;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLis(String lis) {
|
|
|
- this.lis = lis;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPacs() {
|
|
|
- return pacs;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPacs(String pacs) {
|
|
|
- this.pacs = pacs;
|
|
|
- }
|
|
|
-
|
|
|
- public String getDiag() {
|
|
|
- return diag;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDiag(String diag) {
|
|
|
- this.diag = diag;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPast() {
|
|
|
- return past;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPast(String past) {
|
|
|
- this.past = past;
|
|
|
- }
|
|
|
-
|
|
|
- public String getOther() {
|
|
|
- return other;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOther(String other) {
|
|
|
- this.other = other;
|
|
|
- }
|
|
|
-
|
|
|
- public String getFeatureType() {
|
|
|
- return featureType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setFeatureType(String featureType) {
|
|
|
- this.featureType = featureType;
|
|
|
- }
|
|
|
-
|
|
|
- public String[] getFeatureTypes() {
|
|
|
- return featureTypes;
|
|
|
- }
|
|
|
-
|
|
|
- public void setFeatureTypes(String[] featureTypes) {
|
|
|
- this.featureTypes = featureTypes;
|
|
|
- }
|
|
|
-
|
|
|
- public String getResourceType() {
|
|
|
- return resourceType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setResourceType(String resourceType) {
|
|
|
- this.resourceType = resourceType;
|
|
|
- }
|
|
|
-
|
|
|
- public String getSysCode() {
|
|
|
- return sysCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSysCode(String sysCode) {
|
|
|
- this.sysCode = sysCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setThreshold(String threshold) {
|
|
|
- this.threshold = threshold;
|
|
|
- }
|
|
|
-
|
|
|
- public float getThreshold() {
|
|
|
- return Float.parseFloat(threshold);
|
|
|
- }
|
|
|
-
|
|
|
- public List<Feature> getSymptomFeatureList() {
|
|
|
- return symptomFeatureList;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSymptomFeatureList(List<Feature> symptomFeatureList) {
|
|
|
- this.symptomFeatureList = symptomFeatureList;
|
|
|
- }
|
|
|
-
|
|
|
- public List<Feature> getVitalFeatureList() {
|
|
|
- return vitalFeatureList;
|
|
|
- }
|
|
|
-
|
|
|
- public void setVitalFeatureList(List<Feature> vitalFeatureList) {
|
|
|
- this.vitalFeatureList = vitalFeatureList;
|
|
|
- }
|
|
|
-
|
|
|
- public List<Feature> getLisFeatureList() {
|
|
|
- return lisFeatureList;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLisFeatureList(List<Feature> lisFeatureList) {
|
|
|
- this.lisFeatureList = lisFeatureList;
|
|
|
- }
|
|
|
-
|
|
|
- public List<Feature> getPacsFeatureList() {
|
|
|
- return pacsFeatureList;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPacsFeatureList(List<Feature> pacsFeatureList) {
|
|
|
- this.pacsFeatureList = pacsFeatureList;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- public List<Feature> getSymptompropertyFeatureList() {
|
|
|
- return symptompropertyFeatureList;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSymptompropertyFeatureList(List<Feature> symptompropertyFeatureList) {
|
|
|
- this.symptompropertyFeatureList = symptompropertyFeatureList;
|
|
|
- }
|
|
|
-
|
|
|
- public List<Feature> getDiagFeatureList() {
|
|
|
- return diagFeatureList;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDiagFeatureList(List<Feature> diagFeatureList) {
|
|
|
- this.diagFeatureList = diagFeatureList;
|
|
|
- }
|
|
|
-
|
|
|
- public Map<String, Map<String, String>> getInputs() {
|
|
|
- return inputs;
|
|
|
- }
|
|
|
-
|
|
|
- public void setInputs(Map<String, Map<String, String>> inputs) {
|
|
|
- this.inputs = inputs;
|
|
|
- }
|
|
|
-
|
|
|
- public AlgorithmClassify[] getAlgorithmClassify() {
|
|
|
- return algorithmClassify;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAlgorithmClassify(AlgorithmClassify[] algorithmClassify) {
|
|
|
- this.algorithmClassify = algorithmClassify;
|
|
|
- }
|
|
|
-
|
|
|
- public String getAlgorithmClassifyValue() {
|
|
|
- return algorithmClassifyValue;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAlgorithmClassifyValue(String algorithmClassifyValue) {
|
|
|
- this.algorithmClassifyValue = algorithmClassifyValue;
|
|
|
- }
|
|
|
-
|
|
|
- public List<LisResult> getLisArr() {
|
|
|
- return lisArr;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLisArr(List<LisResult> lisArr) {
|
|
|
- this.lisArr = lisArr;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getDisType() {
|
|
|
- return disType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDisType(Integer disType) {
|
|
|
- this.disType = disType;
|
|
|
- }
|
|
|
-
|
|
|
- public String getScaleName() {
|
|
|
- return scaleName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setScaleName(String scaleName) {
|
|
|
- this.scaleName = scaleName;
|
|
|
- }
|
|
|
-
|
|
|
- public List<AdverseReaction> getAdverseEvent() {
|
|
|
- return adverseEvent;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAdverseEvent(List<AdverseReaction> adverseEvent) {
|
|
|
- this.adverseEvent = adverseEvent;
|
|
|
- }
|
|
|
-
|
|
|
- public List<IndicationResult> getIndications() {
|
|
|
- return indications;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIndications(List<IndicationResult> indications) {
|
|
|
- this.indications = indications;
|
|
|
- }
|
|
|
}
|