|
@@ -25,6 +25,36 @@ public class MeasTransmissionRate extends BaseEntity {
|
|
|
@Excel(name = "测量环境id")
|
|
|
private Long measurementBatchId;
|
|
|
|
|
|
+ /**
|
|
|
+ * 发动机型号
|
|
|
+ */
|
|
|
+ private String engineModel;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 几何模型文件
|
|
|
+ */
|
|
|
+ private String geometryFiles;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 几何模型图片
|
|
|
+ */
|
|
|
+ private String geometryImage;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 测量批次
|
|
|
+ */
|
|
|
+ private String measurementBatch;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 发动机状态
|
|
|
+ */
|
|
|
+ private String engineStatus;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 角度
|
|
|
+ */
|
|
|
+ private String angle;
|
|
|
+
|
|
|
/**
|
|
|
* 原始数据
|
|
|
*/
|
|
@@ -83,18 +113,68 @@ public class MeasTransmissionRate extends BaseEntity {
|
|
|
this.curve2 = curve2;
|
|
|
}
|
|
|
|
|
|
+ public String getEngineModel() {
|
|
|
+ return engineModel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEngineModel(String engineModel) {
|
|
|
+ this.engineModel = engineModel;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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 getEngineStatus() {
|
|
|
+ return engineStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEngineStatus(String engineStatus) {
|
|
|
+ this.engineStatus = engineStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAngle() {
|
|
|
+ return angle;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAngle(String angle) {
|
|
|
+ this.angle = angle;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
- return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("id", getId())
|
|
|
- .append("measurementBatchId", getMeasurementBatchId())
|
|
|
- .append("rawData", getRawData())
|
|
|
- .append("curve1", getCurve1())
|
|
|
- .append("curve2", getCurve2())
|
|
|
- .append("createBy", getCreateBy())
|
|
|
- .append("createTime", getCreateTime())
|
|
|
- .append("updateBy", getUpdateBy())
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
- .toString();
|
|
|
+ return "MeasTransmissionRate{" +
|
|
|
+ "id=" + id +
|
|
|
+ ", measurementBatchId=" + measurementBatchId +
|
|
|
+ ", engineModel='" + engineModel + '\'' +
|
|
|
+ ", geometryFiles='" + geometryFiles + '\'' +
|
|
|
+ ", geometryImage='" + geometryImage + '\'' +
|
|
|
+ ", measurementBatch='" + measurementBatch + '\'' +
|
|
|
+ ", engineStatus='" + engineStatus + '\'' +
|
|
|
+ ", angle='" + angle + '\'' +
|
|
|
+ ", rawData='" + rawData + '\'' +
|
|
|
+ ", curve1='" + curve1 + '\'' +
|
|
|
+ ", curve2='" + curve2 + '\'' +
|
|
|
+ '}';
|
|
|
}
|
|
|
}
|