|
@@ -33,6 +33,15 @@ public class MeasEnvData extends BaseEntity {
|
|
private String measurementBatch;
|
|
private String measurementBatch;
|
|
// 发动机号
|
|
// 发动机号
|
|
private String model;
|
|
private String model;
|
|
|
|
+ /**
|
|
|
|
+ * 几何模型文件
|
|
|
|
+ */
|
|
|
|
+ private String geometryFiles;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 几何模型图片
|
|
|
|
+ */
|
|
|
|
+ private String geometryImage;
|
|
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -222,13 +231,31 @@ public class MeasEnvData extends BaseEntity {
|
|
this.model = 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;
|
|
|
|
+ }
|
|
|
|
+
|
|
@Override
|
|
@Override
|
|
public String toString() {
|
|
public String toString() {
|
|
return "MeasEnvData{" +
|
|
return "MeasEnvData{" +
|
|
"id=" + id +
|
|
"id=" + id +
|
|
", measurementBatchId=" + measurementBatchId +
|
|
", measurementBatchId=" + measurementBatchId +
|
|
", measurementBatch='" + measurementBatch + '\'' +
|
|
", measurementBatch='" + measurementBatch + '\'' +
|
|
- ", model=" + model +
|
|
|
|
|
|
+ ", model='" + model + '\'' +
|
|
|
|
+ ", geometryFiles='" + geometryFiles + '\'' +
|
|
|
|
+ ", geometryImage='" + geometryImage + '\'' +
|
|
", engineStatus='" + engineStatus + '\'' +
|
|
", engineStatus='" + engineStatus + '\'' +
|
|
", angle='" + angle + '\'' +
|
|
", angle='" + angle + '\'' +
|
|
", turbinePostTemp='" + turbinePostTemp + '\'' +
|
|
", turbinePostTemp='" + turbinePostTemp + '\'' +
|