|
@ -4,6 +4,9 @@ package com.yihu.wlyy.statistics.vo;
|
|
import org.elasticsearch.common.collect.HppcMaps;
|
|
import org.elasticsearch.common.collect.HppcMaps;
|
|
import org.springframework.util.StringUtils;
|
|
import org.springframework.util.StringUtils;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
/**
|
|
* Created by chenweida on 2017/6/1.
|
|
* Created by chenweida on 2017/6/1.
|
|
*/
|
|
*/
|
|
@ -13,7 +16,6 @@ public class DataModel {
|
|
private String town;//区代码 350206
|
|
private String town;//区代码 350206
|
|
private String hospital;//机构code
|
|
private String hospital;//机构code
|
|
private String team;//团队的code
|
|
private String team;//团队的code
|
|
private String adminTeamCode;//
|
|
|
|
private String slaveKey1;//从维度 1级维度
|
|
private String slaveKey1;//从维度 1级维度
|
|
private String slaveKey2;//从维度 2级维度
|
|
private String slaveKey2;//从维度 2级维度
|
|
private String slaveKey3;//从维度 3级维度
|
|
private String slaveKey3;//从维度 3级维度
|
|
@ -23,12 +25,12 @@ public class DataModel {
|
|
private String idcard;// 身份证
|
|
private String idcard;// 身份证
|
|
private String serverType;//服务类型
|
|
private String serverType;//服务类型
|
|
private String healthLable;//健康标签
|
|
private String healthLable;//健康标签
|
|
private Double num=1.0;//分数 如果是累加的计算 默认是1 如果是分数从数据库拿
|
|
|
|
|
|
private Double num = 1.0;//分数 如果是累加的计算 默认是1 如果是分数从数据库拿
|
|
private String prescriptionCode;//处方code
|
|
private String prescriptionCode;//处方code
|
|
private String healthProblem;//诊断标签
|
|
private String healthProblem;//诊断标签
|
|
|
|
|
|
|
|
|
|
private Double result1=0.0; //从ES统计的时候的数目
|
|
|
|
|
|
private Double result1 = 0.0; //从ES统计的时候的数目
|
|
|
|
|
|
|
|
|
|
public String getHealthLable() {
|
|
public String getHealthLable() {
|
|
@ -159,6 +161,7 @@ public class DataModel {
|
|
|
|
|
|
return null;
|
|
return null;
|
|
}
|
|
}
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public String toString() {
|
|
public String toString() {
|
|
return "DataModel{" +
|
|
return "DataModel{" +
|
|
@ -182,7 +185,9 @@ public class DataModel {
|
|
this.patient = patient;
|
|
this.patient = patient;
|
|
}
|
|
}
|
|
|
|
|
|
public String getPrescriptionCode() { return prescriptionCode; }
|
|
|
|
|
|
public String getPrescriptionCode() {
|
|
|
|
return prescriptionCode;
|
|
|
|
}
|
|
|
|
|
|
public void setPrescriptionCode(String prescriptionCode) {
|
|
public void setPrescriptionCode(String prescriptionCode) {
|
|
this.prescriptionCode = prescriptionCode;
|
|
this.prescriptionCode = prescriptionCode;
|
|
@ -204,11 +209,4 @@ public class DataModel {
|
|
this.result1 = result1;
|
|
this.result1 = result1;
|
|
}
|
|
}
|
|
|
|
|
|
public String getAdminTeamCode() {
|
|
|
|
return adminTeamCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setAdminTeamCode(String adminTeamCode) {
|
|
|
|
this.adminTeamCode = adminTeamCode;
|
|
|
|
}
|
|
|
|
}
|
|
}
|