|
@@ -22,11 +22,31 @@ public class MeasDataResults extends BaseEntity {
|
|
|
private Long id;
|
|
|
|
|
|
/**
|
|
|
- * 测量批次id
|
|
|
+ * 测量环境id
|
|
|
*/
|
|
|
- @Excel(name = "测量批次id")
|
|
|
+ @Excel(name = "测量环境id")
|
|
|
private String measurementBatchId;
|
|
|
|
|
|
+ /**
|
|
|
+ * 发动机型号
|
|
|
+ */
|
|
|
+ private String model;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 几何模型文件
|
|
|
+ */
|
|
|
+ private String geometryFiles;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 几何模型图片
|
|
|
+ */
|
|
|
+ private String geometryImage;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 测量批次
|
|
|
+ */
|
|
|
+ private String measurementBatch;
|
|
|
+
|
|
|
/**
|
|
|
* 光谱辐射强度3~5μm
|
|
|
*/
|
|
@@ -67,6 +87,38 @@ public class MeasDataResults extends BaseEntity {
|
|
|
this.measurementBatchId = measurementBatchId;
|
|
|
}
|
|
|
|
|
|
+ public String getModel() {
|
|
|
+ return model;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setModel(String model) {
|
|
|
+ this.model = model;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getGeometryFiles() {
|
|
|
+ return geometryFiles;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGeometryFiles(String geometryFiles) {
|
|
|
+ this.geometryFiles = geometryFiles;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getGeometryImage() {
|
|
|
+ return geometryImage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGeometryImage(String geometryImage) {
|
|
|
+ this.geometryImage = geometryImage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMeasurementBatch() {
|
|
|
+ return measurementBatch;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMeasurementBatch(String measurementBatch) {
|
|
|
+ this.measurementBatch = measurementBatch;
|
|
|
+ }
|
|
|
+
|
|
|
public String getSpecIrr1() {
|
|
|
return specIrr1;
|
|
|
}
|
|
@@ -101,17 +153,17 @@ public class MeasDataResults extends BaseEntity {
|
|
|
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
- return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("id", getId())
|
|
|
- .append("measurementBatchId", getMeasurementBatchId())
|
|
|
- .append("specIrr1", getSpecIrr1())
|
|
|
- .append("specIrr2", getSpecIrr2())
|
|
|
- .append("specBandIrr1", getSpecBandIrr1())
|
|
|
- .append("specBandIrr2", getSpecBandIrr2())
|
|
|
- .append("createBy", getCreateBy())
|
|
|
- .append("createTime", getCreateTime())
|
|
|
- .append("updateBy", getUpdateBy())
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
- .toString();
|
|
|
+ return "MeasDataResults{" +
|
|
|
+ "id=" + id +
|
|
|
+ ", measurementBatchId='" + measurementBatchId + '\'' +
|
|
|
+ ", model='" + model + '\'' +
|
|
|
+ ", geometryFiles='" + geometryFiles + '\'' +
|
|
|
+ ", geometryImage='" + geometryImage + '\'' +
|
|
|
+ ", measurementBatch='" + measurementBatch + '\'' +
|
|
|
+ ", specIrr1='" + specIrr1 + '\'' +
|
|
|
+ ", specIrr2='" + specIrr2 + '\'' +
|
|
|
+ ", specBandIrr1=" + specBandIrr1 +
|
|
|
+ ", specBandIrr2=" + specBandIrr2 +
|
|
|
+ '}';
|
|
|
}
|
|
|
}
|