|
@@ -0,0 +1,782 @@
|
|
|
+package com.fidms.web.domain;
|
|
|
+
|
|
|
+import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
+import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
+
|
|
|
+import com.fidms.common.core.domain.BaseEntity;
|
|
|
+import com.fidms.common.annotation.Excel;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 报表管理对象 bz_model_3d_t
|
|
|
+ *
|
|
|
+ * @author fidms
|
|
|
+ * @date 2024-03-15
|
|
|
+ */
|
|
|
+public class ExportAllinfo extends BaseEntity
|
|
|
+{
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /** 编号 */
|
|
|
+ @Excel(name = "3d模型编号")
|
|
|
+ private Long m3id;
|
|
|
+
|
|
|
+ /** 3d模型名称 */
|
|
|
+ @Excel(name = "3d模型名称")
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ /** 3d模型文件名称 */
|
|
|
+ //@Excel(name = "3d模型文件名称")
|
|
|
+ private String model3dFile;
|
|
|
+
|
|
|
+ /** 3d模型文件名称路径 */
|
|
|
+ @Excel(name = "3d模型文件名称")
|
|
|
+ private String model3dFilePath;
|
|
|
+
|
|
|
+ /** 飞机类型 */
|
|
|
+ @Excel(name = "飞机类型")
|
|
|
+ private String aircraftType;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ /** 编号 */
|
|
|
+ @Excel(name = "流场输入编号")
|
|
|
+ private Long ffiid;
|
|
|
+
|
|
|
+ /** 3d模型主键 */
|
|
|
+ //@Excel(name = "3d模型主键")
|
|
|
+ private Long model3dId;
|
|
|
+
|
|
|
+
|
|
|
+ /** 来流马赫数*/
|
|
|
+ @Excel(name = "来流马赫数")
|
|
|
+ public BigDecimal machNumber;
|
|
|
+
|
|
|
+ /** 来流方向x */
|
|
|
+ @Excel(name = "来流方向x")
|
|
|
+ public BigDecimal flowDirectionX;
|
|
|
+
|
|
|
+ /** 来流方向y */
|
|
|
+ @Excel(name = "来流方向y")
|
|
|
+ public BigDecimal flowDirectionY;
|
|
|
+
|
|
|
+ /** 来流方向z */
|
|
|
+ @Excel(name = "来流方向z")
|
|
|
+ public BigDecimal flowDirectionZ;
|
|
|
+
|
|
|
+ /** 流速x */
|
|
|
+ @Excel(name = "流速x")
|
|
|
+ public BigDecimal flowVelocityX;
|
|
|
+
|
|
|
+ /** 流速y */
|
|
|
+ @Excel(name = "流速y")
|
|
|
+ public BigDecimal flowVelocityY;
|
|
|
+
|
|
|
+ /** 流速z */
|
|
|
+ @Excel(name = "流速z")
|
|
|
+ public BigDecimal flowVelocityZ;
|
|
|
+
|
|
|
+ /**红外波段*/
|
|
|
+ @Excel(name = "红外波段")
|
|
|
+ public BigDecimal ffiinfraredBand;
|
|
|
+
|
|
|
+ /** 来流温度 */
|
|
|
+ @Excel(name = "来流温度")
|
|
|
+ public BigDecimal flowTemperature;
|
|
|
+
|
|
|
+ /** 来流静压 */
|
|
|
+ @Excel(name = "来流静压")
|
|
|
+ public BigDecimal flowPressure;
|
|
|
+
|
|
|
+ /** 来流密度 */
|
|
|
+ @Excel(name = "来流密度")
|
|
|
+ public BigDecimal flowDensity;
|
|
|
+
|
|
|
+ /** 飞行高度 */
|
|
|
+ @Excel(name = "飞行高度")
|
|
|
+ public BigDecimal flightAltitude;
|
|
|
+
|
|
|
+ /** 二氧化碳质量分数 */
|
|
|
+ @Excel(name = "二氧化碳质量分数")
|
|
|
+ public BigDecimal co2MassFraction;
|
|
|
+
|
|
|
+ /** 一氧化碳质量分数 */
|
|
|
+ @Excel(name = "一氧化碳质量分数")
|
|
|
+ public BigDecimal coMassFraction;
|
|
|
+
|
|
|
+ /** 水蒸气质量分数 */
|
|
|
+ @Excel(name = "水蒸气质量分数")
|
|
|
+ public BigDecimal h2oMassFraction;
|
|
|
+
|
|
|
+ /** Fluent网格文件 */
|
|
|
+ //@Excel(name = "Fluent网格文件")
|
|
|
+ private String fluentGridFile;
|
|
|
+
|
|
|
+ /** Fluent网格文件路径 */
|
|
|
+ @Excel(name = "Fluent网格文件")
|
|
|
+ private String fluentGridFilePath;
|
|
|
+
|
|
|
+ /** Fluent cas文件 */
|
|
|
+ //@Excel(name = "Fluent cas文件")
|
|
|
+ private String fluentCasFile;
|
|
|
+
|
|
|
+ /** Fluent cas文件路径 */
|
|
|
+ @Excel(name = "Fluent cas文件")
|
|
|
+ private String fluentCasFilePath;
|
|
|
+
|
|
|
+ /** Fluent dat文件路径 */
|
|
|
+ //@Excel(name = "Fluent dat文件路径")
|
|
|
+ private String fluentDatFile;
|
|
|
+
|
|
|
+ /** Fluent dat文件 */
|
|
|
+ @Excel(name = "Fluent dat文件")
|
|
|
+ private String fluentDatFilePath;
|
|
|
+
|
|
|
+
|
|
|
+ /** 编号 */
|
|
|
+ @Excel(name = "流场输出编号")
|
|
|
+ private Long ffoid;
|
|
|
+
|
|
|
+ /**对应流场输入编号*/
|
|
|
+ //@Excel(name = "对应流场输入编号")
|
|
|
+ private Long flowFieldInputID;
|
|
|
+
|
|
|
+ /** 是否为结构网格 */
|
|
|
+ @Excel(name = "是否为结构网格")
|
|
|
+ private Boolean isStructureGrid;
|
|
|
+
|
|
|
+ public void setIsStructureGrid(Boolean isStructureGrid)
|
|
|
+ {
|
|
|
+ this.isStructureGrid = isStructureGrid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Boolean getIsStructureGrid()
|
|
|
+ {
|
|
|
+ return isStructureGrid;
|
|
|
+ }
|
|
|
+ /** 网格数 */
|
|
|
+ @Excel(name = "网格数")
|
|
|
+ private BigDecimal gridNumber;
|
|
|
+
|
|
|
+ /** 迭代步数*/
|
|
|
+ @Excel(name = "迭代步数")
|
|
|
+ private BigDecimal iterationSteps;
|
|
|
+
|
|
|
+ /** cas文件输出 */
|
|
|
+ //@Excel(name = "cas文件输出")
|
|
|
+ private String casOutputFile;
|
|
|
+
|
|
|
+ /** cas文件输出路径 */
|
|
|
+ @Excel(name = "cas文件输出")
|
|
|
+ private String casOutputFilePath;
|
|
|
+
|
|
|
+ /** dat文件输出 */
|
|
|
+ //@Excel(name = "dat文件输出")
|
|
|
+ private String datOutputFile;
|
|
|
+
|
|
|
+ /** dat文件输出路径 */
|
|
|
+ @Excel(name = "dat文件输出")
|
|
|
+ private String datOutputFilePath;
|
|
|
+
|
|
|
+ /** other文件输出 */
|
|
|
+ //@Excel(name = "other文件输出")
|
|
|
+ private String otherOutputFile;
|
|
|
+
|
|
|
+ /** other文件输出路径 */
|
|
|
+ @Excel(name = "other文件输出")
|
|
|
+ private String otherOutputFilePath;
|
|
|
+
|
|
|
+ /**表面温度分布图*/
|
|
|
+ //@Excel(name="表面温度分布图")
|
|
|
+ private String temperatureImage;
|
|
|
+
|
|
|
+ /**表面温度分布图路径*/
|
|
|
+ @Excel(name="表面温度分布图",width = 25,height = 125,cellType= Excel.ColumnType.IMAGE)
|
|
|
+ private String temperatureImagePath;
|
|
|
+
|
|
|
+ /**表面速度分布图*/
|
|
|
+ //@Excel(name="表面速度分布图")
|
|
|
+ private String velocityImage;
|
|
|
+
|
|
|
+ /**表面速度分布图路径*/
|
|
|
+ @Excel(name="表面速度分布图",width = 25,height = 125,cellType= Excel.ColumnType.IMAGE)
|
|
|
+ private String velocityImagePath;
|
|
|
+
|
|
|
+ /**表面压力分布图*/
|
|
|
+ //@Excel(name="表面压力分布图")
|
|
|
+ private String pressureImage;
|
|
|
+
|
|
|
+ /**表面压力分布图路径*/
|
|
|
+ @Excel(name="表面压力分布图",width = 25,height = 125,cellType= Excel.ColumnType.IMAGE)
|
|
|
+ private String pressureImagePath;
|
|
|
+
|
|
|
+
|
|
|
+ /** 编号 */
|
|
|
+ @Excel(name = "红外输入编号")
|
|
|
+ private Long ifiid;
|
|
|
+ /**对应流场输出编号*/
|
|
|
+ //@Excel(name="对应流场输出编号")
|
|
|
+ private Long flowFieldOutputID;
|
|
|
+
|
|
|
+ /** 完好发射率 */
|
|
|
+ @Excel(name = "完好发射率")
|
|
|
+ private BigDecimal FullLaunchRate;
|
|
|
+
|
|
|
+ /** 损伤发射率 */
|
|
|
+ @Excel(name = "损伤发射率")
|
|
|
+ private BigDecimal DamageLaunchRate;
|
|
|
+
|
|
|
+ /** 损伤区域 */
|
|
|
+ @Excel(name = "损伤区域")
|
|
|
+ private String DamageArea;
|
|
|
+
|
|
|
+ /** 损伤面积比 */
|
|
|
+ @Excel(name = "损伤面积比")
|
|
|
+ private BigDecimal DamageAreaRatio;
|
|
|
+
|
|
|
+ /** 表面状态说明 */
|
|
|
+ @Excel(name = "表面状态说明")
|
|
|
+ private String SurfaceDescription;
|
|
|
+
|
|
|
+ /** 探测距离*/
|
|
|
+ @Excel(name = "探测距离")
|
|
|
+ private BigDecimal DetectDistance;
|
|
|
+
|
|
|
+ /** 探测方位角 */
|
|
|
+ @Excel(name = "探测方位角")
|
|
|
+ private BigDecimal DetectAngle;
|
|
|
+
|
|
|
+ /** 红外波段 */
|
|
|
+ @Excel(name = "红外波段")
|
|
|
+ private BigDecimal ifiinfraredBand;
|
|
|
+
|
|
|
+ /** 编号 */
|
|
|
+ @Excel(name = "红外输出编号")
|
|
|
+ private Long ifoid;
|
|
|
+
|
|
|
+ /**对应红外输入编号*/
|
|
|
+ //@Excel(name="对应红外输入编号")
|
|
|
+ private Long infraredInputID;
|
|
|
+
|
|
|
+ /** 文件输出 */
|
|
|
+ //@Excel(name = "文件输出")
|
|
|
+ private String outputFile;
|
|
|
+
|
|
|
+ /** 文件输出路径 */
|
|
|
+ @Excel(name = "文件输出")
|
|
|
+ private String outputFilePath;
|
|
|
+
|
|
|
+ /** 红外辐射强度 */
|
|
|
+ @Excel(name = "红外辐射强度")
|
|
|
+ private BigDecimal radiationIntensity;
|
|
|
+
|
|
|
+ /** 红外图像 */
|
|
|
+ //@Excel(name = "红外图像")
|
|
|
+ private String infraredImage;
|
|
|
+
|
|
|
+ /** 红外图像路径 */
|
|
|
+ @Excel(name = "红外图像",width = 25,height = 125,cellType= Excel.ColumnType.IMAGE)
|
|
|
+ private String infraredImagePath;
|
|
|
+
|
|
|
+
|
|
|
+ public Long getM3id() {
|
|
|
+ return m3id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setM3id(Long m3id) {
|
|
|
+ this.m3id = m3id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setName(String name)
|
|
|
+ {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getName()
|
|
|
+ {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+ public void setModel3dFile(String model3dFile)
|
|
|
+ {
|
|
|
+ this.model3dFile = model3dFile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getModel3dFile()
|
|
|
+ {
|
|
|
+ return model3dFile;
|
|
|
+ }
|
|
|
+ public void setModel3dFilePath(String model3dFilePath)
|
|
|
+ {
|
|
|
+ this.model3dFilePath = model3dFilePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getModel3dFilePath()
|
|
|
+ {
|
|
|
+ return model3dFilePath;
|
|
|
+ }
|
|
|
+ public void setAircraftType(String aircraftType)
|
|
|
+ {
|
|
|
+ this.aircraftType = aircraftType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAircraftType()
|
|
|
+ {
|
|
|
+ return aircraftType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getModel3dId() {
|
|
|
+ return model3dId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setModel3dId(Long model3dId) {
|
|
|
+ this.model3dId = model3dId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getFfiid() {
|
|
|
+ return ffiid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFfiid(Long ffiid) {
|
|
|
+ this.ffiid = ffiid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getMachNumber() {
|
|
|
+ return machNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMachNumber(BigDecimal machNumber) {
|
|
|
+ this.machNumber = machNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getFlowDirectionX() {
|
|
|
+ return flowDirectionX;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFlowDirectionX(BigDecimal flowDirectionX) {
|
|
|
+ this.flowDirectionX = flowDirectionX;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getFlowDirectionY() {
|
|
|
+ return flowDirectionY;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFlowDirectionY(BigDecimal flowDirectionY) {
|
|
|
+ this.flowDirectionY = flowDirectionY;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getFlowDirectionZ() {
|
|
|
+ return flowDirectionZ;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFlowDirectionZ(BigDecimal flowDirectionZ) {
|
|
|
+ this.flowDirectionZ = flowDirectionZ;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getFlowVelocityX() {
|
|
|
+ return flowVelocityX;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFlowVelocityX(BigDecimal flowVelocityX) {
|
|
|
+ this.flowVelocityX = flowVelocityX;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getFlowVelocityY() {
|
|
|
+ return flowVelocityY;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFlowVelocityY(BigDecimal flowVelocityY) {
|
|
|
+ this.flowVelocityY = flowVelocityY;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getFlowVelocityZ() {
|
|
|
+ return flowVelocityZ;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFlowVelocityZ(BigDecimal flowVelocityZ) {
|
|
|
+ this.flowVelocityZ = flowVelocityZ;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getFfiinfraredBand() {
|
|
|
+ return ffiinfraredBand;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFfiinfraredBand(BigDecimal ffiinfraredBand) {
|
|
|
+ this.ffiinfraredBand = ffiinfraredBand;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getFlowTemperature() {
|
|
|
+ return flowTemperature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFlowTemperature(BigDecimal flowTemperature) {
|
|
|
+ this.flowTemperature = flowTemperature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getFlowPressure() {
|
|
|
+ return flowPressure;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFlowPressure(BigDecimal flowPressure) {
|
|
|
+ this.flowPressure = flowPressure;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getFlowDensity() {
|
|
|
+ return flowDensity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFlowDensity(BigDecimal flowDensity) {
|
|
|
+ this.flowDensity = flowDensity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getFlightAltitude() {
|
|
|
+ return flightAltitude;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFlightAltitude(BigDecimal flightAltitude) {
|
|
|
+ this.flightAltitude = flightAltitude;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getCo2MassFraction() {
|
|
|
+ return co2MassFraction;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCo2MassFraction(BigDecimal co2MassFraction) {
|
|
|
+ this.co2MassFraction = co2MassFraction;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getCoMassFraction() {
|
|
|
+ return coMassFraction;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCoMassFraction(BigDecimal coMassFraction) {
|
|
|
+ this.coMassFraction = coMassFraction;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getH2oMassFraction() {
|
|
|
+ return h2oMassFraction;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setH2oMassFraction(BigDecimal h2oMassFraction) {
|
|
|
+ this.h2oMassFraction = h2oMassFraction;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFluentGridFilePath() {
|
|
|
+ return fluentGridFilePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFluentGridFilePath(String fluentGridFilePath) {
|
|
|
+ this.fluentGridFilePath = fluentGridFilePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFluentCasFilePath() {
|
|
|
+ return fluentCasFilePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFluentCasFilePath(String fluentCasFilePath) {
|
|
|
+ this.fluentCasFilePath = fluentCasFilePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFluentDatFilePath() {
|
|
|
+ return fluentDatFilePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFluentDatFilePath(String fluentDatFilePath) {
|
|
|
+ this.fluentDatFilePath = fluentDatFilePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static long getSerialVersionUID() {
|
|
|
+ return serialVersionUID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getFfoid() {
|
|
|
+ return ffoid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFfoid(Long ffoid) {
|
|
|
+ this.ffoid = ffoid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getGridNumber() {
|
|
|
+ return gridNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGridNumber(BigDecimal gridNumber) {
|
|
|
+ this.gridNumber = gridNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getIterationSteps() {
|
|
|
+ return iterationSteps;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIterationSteps(BigDecimal iterationSteps) {
|
|
|
+ this.iterationSteps = iterationSteps;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCasOutputFile() {
|
|
|
+ return casOutputFile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCasOutputFile(String casOutputFile) {
|
|
|
+ this.casOutputFile = casOutputFile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDatOutputFile() {
|
|
|
+ return datOutputFile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDatOutputFile(String datOutputFile) {
|
|
|
+ this.datOutputFile = datOutputFile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOtherOutputFile() {
|
|
|
+ return otherOutputFile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOtherOutputFile(String otherOutputFile) {
|
|
|
+ this.otherOutputFile = otherOutputFile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTemperatureImage() {
|
|
|
+ return temperatureImage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTemperatureImage(String temperatureImage) {
|
|
|
+ this.temperatureImage = temperatureImage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getVelocityImage() {
|
|
|
+ return velocityImage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setVelocityImage(String velocityImage) {
|
|
|
+ this.velocityImage = velocityImage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getVelocityImagePath() {
|
|
|
+ return velocityImagePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setVelocityImagePath(String velocityImagePath) {
|
|
|
+ this.velocityImagePath = velocityImagePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPressureImagePath() {
|
|
|
+ return pressureImagePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPressureImagePath(String pressureImagePath) {
|
|
|
+ this.pressureImagePath = pressureImagePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getIfiid() {
|
|
|
+ return ifiid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIfiid(Long ifiid) {
|
|
|
+ this.ifiid = ifiid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getFlowFieldInputID() {
|
|
|
+ return flowFieldInputID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFlowFieldInputID(Long flowFieldInputID) {
|
|
|
+ this.flowFieldInputID = flowFieldInputID;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public String getCasOutputFilePath() {
|
|
|
+ return casOutputFilePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCasOutputFilePath(String casOutputFilePath) {
|
|
|
+ this.casOutputFilePath = casOutputFilePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDatOutputFilePath() {
|
|
|
+ return datOutputFilePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDatOutputFilePath(String datOutputFilePath) {
|
|
|
+ this.datOutputFilePath = datOutputFilePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTemperatureImagePath() {
|
|
|
+ return temperatureImagePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTemperatureImagePath(String temperatureImagePath) {
|
|
|
+ this.temperatureImagePath = temperatureImagePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPressureImage() {
|
|
|
+ return pressureImage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPressureImage(String pressureImage) {
|
|
|
+ this.pressureImage = pressureImage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getFlowFieldOutputID() {
|
|
|
+ return flowFieldOutputID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFlowFieldOutputID(Long flowFieldOutputID) {
|
|
|
+ this.flowFieldOutputID = flowFieldOutputID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getDamageLaunchRate() {
|
|
|
+ return DamageLaunchRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDamageLaunchRate(BigDecimal damageLaunchRate) {
|
|
|
+ DamageLaunchRate = damageLaunchRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getDetectDistance() {
|
|
|
+ return DetectDistance;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDetectDistance(BigDecimal detectDistance) {
|
|
|
+ DetectDistance = detectDistance;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getDetectAngle() {
|
|
|
+ return DetectAngle;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDetectAngle(BigDecimal detectAngle) {
|
|
|
+ DetectAngle = detectAngle;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getIfoid() {
|
|
|
+ return ifoid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIfoid(Long ifoid) {
|
|
|
+ this.ifoid = ifoid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOtherOutputFilePath() {
|
|
|
+ return otherOutputFilePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOtherOutputFilePath(String otherOutputFilePath) {
|
|
|
+ this.otherOutputFilePath = otherOutputFilePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getFullLaunchRate() {
|
|
|
+ return FullLaunchRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFullLaunchRate(BigDecimal fullLaunchRate) {
|
|
|
+ FullLaunchRate = fullLaunchRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDamageArea() {
|
|
|
+ return DamageArea;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDamageArea(String damageArea) {
|
|
|
+ DamageArea = damageArea;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getDamageAreaRatio() {
|
|
|
+ return DamageAreaRatio;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDamageAreaRatio(BigDecimal damageAreaRatio) {
|
|
|
+ DamageAreaRatio = damageAreaRatio;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSurfaceDescription() {
|
|
|
+ return SurfaceDescription;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSurfaceDescription(String surfaceDescription) {
|
|
|
+ SurfaceDescription = surfaceDescription;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getIfiinfraredBand() {
|
|
|
+ return ifiinfraredBand;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIfiinfraredBand(BigDecimal ifiinfraredBand) {
|
|
|
+ this.ifiinfraredBand = ifiinfraredBand;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getInfraredInputID() {
|
|
|
+ return infraredInputID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInfraredInputID(Long infraredInputID) {
|
|
|
+ this.infraredInputID = infraredInputID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOutputFile() {
|
|
|
+ return outputFile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOutputFile(String outputFile) {
|
|
|
+ this.outputFile = outputFile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOutputFilePath() {
|
|
|
+ return outputFilePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOutputFilePath(String outputFilePath) {
|
|
|
+ this.outputFilePath = outputFilePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getRadiationIntensity() {
|
|
|
+ return radiationIntensity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRadiationIntensity(BigDecimal radiationIntensity) {
|
|
|
+ this.radiationIntensity = radiationIntensity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getInfraredImage() {
|
|
|
+ return infraredImage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInfraredImage(String infraredImage) {
|
|
|
+ this.infraredImage = infraredImage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getInfraredImagePath() {
|
|
|
+ return infraredImagePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInfraredImagePath(String infraredImagePath) {
|
|
|
+ this.infraredImagePath = infraredImagePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFluentGridFile() {
|
|
|
+ return fluentGridFile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFluentGridFile(String fluentGridFile) {
|
|
|
+ this.fluentGridFile = fluentGridFile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFluentCasFile() {
|
|
|
+ return fluentCasFile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFluentCasFile(String fluentCasFile) {
|
|
|
+ this.fluentCasFile = fluentCasFile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFluentDatFile() {
|
|
|
+ return fluentDatFile;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFluentDatFile(String fluentDatFile) {
|
|
|
+ this.fluentDatFile = fluentDatFile;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+}
|