package com.moon.server.entity.data;
|
|
import java.io.Serializable;
|
|
/**
|
* 分析结果
|
* @author WWW
|
* @date 2023-09-11
|
*/
|
public class AnalysisResultEntity implements Serializable {
|
private static final long serialVersionUID = -1237623414044281355L;
|
|
public AnalysisResultEntity() {
|
}
|
|
private String layerName;
|
|
private Double min;
|
|
private Double avg;
|
|
private Double max;
|
|
private int code;
|
|
private String info;
|
|
public String getLayerName() {
|
return layerName;
|
}
|
|
public void setLayerName(String layerName) {
|
this.layerName = layerName;
|
}
|
|
public Double getMin() {
|
return min;
|
}
|
|
public void setMin(Double min) {
|
this.min = min;
|
}
|
|
public Double getAvg() {
|
return avg;
|
}
|
|
public void setAvg(Double avg) {
|
this.avg = avg;
|
}
|
|
public Double getMax() {
|
return max;
|
}
|
|
public void setMax(Double max) {
|
this.max = max;
|
}
|
|
public int getCode() {
|
return code;
|
}
|
|
public void setCode(int code) {
|
this.code = code;
|
}
|
|
public String getInfo() {
|
return info;
|
}
|
|
public void setInfo(String info) {
|
this.info = info;
|
}
|
}
|