|
|
|
@@ -1,5 +1,6 @@ |
|
|
|
package com.ruoyi.platform.domain; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField; |
|
|
|
import com.fasterxml.jackson.annotation.JsonRawValue; |
|
|
|
import com.fasterxml.jackson.databind.PropertyNamingStrategy; |
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonNaming; |
|
|
|
@@ -74,10 +75,11 @@ public class ExperimentIns implements Serializable { |
|
|
|
private Integer state; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "实验实例对应的流水线ID") |
|
|
|
private Long workflowId; |
|
|
|
|
|
|
|
@TableField(exist = false) |
|
|
|
private String experimentName; |
|
|
|
|
|
|
|
public ExperimentIns() { |
|
|
|
} |
|
|
|
@@ -160,13 +162,17 @@ public class ExperimentIns implements Serializable { |
|
|
|
this.startTime = startTime; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getStartTime() {return startTime;} |
|
|
|
public Date getStartTime() { |
|
|
|
return startTime; |
|
|
|
} |
|
|
|
|
|
|
|
public void setFinishTime(Date finishTime) { |
|
|
|
this.finishTime = finishTime; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getFinishTime() {return finishTime;} |
|
|
|
public Date getFinishTime() { |
|
|
|
return finishTime; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public String getCreateBy() { |
|
|
|
@@ -209,9 +215,13 @@ public class ExperimentIns implements Serializable { |
|
|
|
this.state = state; |
|
|
|
} |
|
|
|
|
|
|
|
public Long getWorkflowId() {return workflowId;} |
|
|
|
public Long getWorkflowId() { |
|
|
|
return workflowId; |
|
|
|
} |
|
|
|
|
|
|
|
public void setWorkflowId(Long workflowId) {this.workflowId = workflowId;} |
|
|
|
public void setWorkflowId(Long workflowId) { |
|
|
|
this.workflowId = workflowId; |
|
|
|
} |
|
|
|
|
|
|
|
public String getMetricRecord() { |
|
|
|
return metricRecord; |
|
|
|
@@ -220,5 +230,13 @@ public class ExperimentIns implements Serializable { |
|
|
|
public void setMetricRecord(String metricRecord) { |
|
|
|
this.metricRecord = metricRecord; |
|
|
|
} |
|
|
|
|
|
|
|
public String getExperimentName() { |
|
|
|
return experimentName; |
|
|
|
} |
|
|
|
|
|
|
|
public void setExperimentName(String experimentName) { |
|
|
|
this.experimentName = experimentName; |
|
|
|
} |
|
|
|
} |
|
|
|
|