|
@ -76,7 +76,7 @@ public class SaveModel {
|
|
|
|
|
|
private Double result1 = 0.0;//统计结果 总的累加结果 如果是平均分 那就是总分 其他指标都是和result2一样
|
|
|
|
|
|
private Integer result2 = 0;//统计结果 次数
|
|
|
private Double result2 = 0.0;//统计结果 次数
|
|
|
|
|
|
private String areaLevel;// 1 省 2 市 3 区县 4 机构 5团队
|
|
|
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ssXX")
|
|
@ -167,11 +167,11 @@ public class SaveModel {
|
|
|
this.result1 = result1;
|
|
|
}
|
|
|
|
|
|
public Integer getResult2() {
|
|
|
public Double getResult2() {
|
|
|
return result2;
|
|
|
}
|
|
|
|
|
|
public void setResult2(Integer result2) {
|
|
|
public void setResult2(Double result2) {
|
|
|
this.result2 = result2;
|
|
|
}
|
|
|
|