|
@@ -1,6 +1,7 @@
|
|
|
package com.taais.biz.domain.vo;
|
|
|
|
|
|
import java.util.Date;
|
|
|
+
|
|
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
import com.taais.biz.domain.TrackSequence;
|
|
@@ -9,8 +10,10 @@ import com.taais.common.excel.convert.ExcelDictConvert;
|
|
|
import io.github.linpeilie.annotations.AutoMapper;
|
|
|
import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
+
|
|
|
import java.io.Serial;
|
|
|
import java.io.Serializable;
|
|
|
+
|
|
|
import com.taais.common.orm.core.domain.BaseEntity;
|
|
|
|
|
|
/**
|
|
@@ -25,71 +28,104 @@ import com.taais.common.orm.core.domain.BaseEntity;
|
|
|
@AutoMapper(target = TrackSequence.class)
|
|
|
public class TrackSequenceVo extends BaseEntity implements Serializable {
|
|
|
|
|
|
-@Serial
|
|
|
-private static final long serialVersionUID = 1L;
|
|
|
+ @Serial
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
|
|
|
- /** ID */
|
|
|
+ /**
|
|
|
+ * ID
|
|
|
+ */
|
|
|
@ExcelProperty(value = "ID")
|
|
|
private Long id;
|
|
|
|
|
|
- /** 任务名称 */
|
|
|
+ /**
|
|
|
+ * 任务名称
|
|
|
+ */
|
|
|
@ExcelProperty(value = "任务名称")
|
|
|
private String name;
|
|
|
|
|
|
- /** 状态
|
|
|
-0:未开始
|
|
|
-1:进行中
|
|
|
-2:完成
|
|
|
-3:失败
|
|
|
-4:中断 */
|
|
|
+ /**
|
|
|
+ * 状态
|
|
|
+ * 0:未开始
|
|
|
+ * 1:进行中
|
|
|
+ * 2:完成
|
|
|
+ * 3:失败
|
|
|
+ * 4:中断
|
|
|
+ */
|
|
|
@ExcelProperty(value = "状态")
|
|
|
private String status;
|
|
|
|
|
|
- /** 开始时间 */
|
|
|
+ /**
|
|
|
+ * 开始时间
|
|
|
+ */
|
|
|
@ExcelProperty(value = "开始时间")
|
|
|
private Date startTime;
|
|
|
|
|
|
- /** 结束时间 */
|
|
|
+ /**
|
|
|
+ * 结束时间
|
|
|
+ */
|
|
|
@ExcelProperty(value = "结束时间")
|
|
|
private Date endTime;
|
|
|
|
|
|
- /** 耗时 */
|
|
|
+ /**
|
|
|
+ * 耗时
|
|
|
+ */
|
|
|
@ExcelProperty(value = "耗时")
|
|
|
private Long costSecond;
|
|
|
|
|
|
- /** 日志 */
|
|
|
+ /**
|
|
|
+ * 日志
|
|
|
+ */
|
|
|
@ExcelProperty(value = "日志")
|
|
|
private String log;
|
|
|
|
|
|
- /** 备注 */
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
@ExcelProperty(value = "备注")
|
|
|
private String remarks;
|
|
|
|
|
|
- /** $column.columnComment */
|
|
|
+ /**
|
|
|
+ * $column.columnComment
|
|
|
+ */
|
|
|
@ExcelProperty(value = "${column.columnComment}")
|
|
|
private Integer delFlag;
|
|
|
|
|
|
- /** $column.columnComment */
|
|
|
+ /**
|
|
|
+ * $column.columnComment
|
|
|
+ */
|
|
|
@ExcelProperty(value = "${comment}", converter = ExcelDictConvert.class)
|
|
|
@ExcelDictFormat(readConverterExp = "$column.readConverterExp()")
|
|
|
private String url;
|
|
|
|
|
|
- /** $column.columnComment */
|
|
|
+ /**
|
|
|
+ * $column.columnComment
|
|
|
+ */
|
|
|
@ExcelProperty(value = "${comment}", converter = ExcelDictConvert.class)
|
|
|
@ExcelDictFormat(readConverterExp = "$column.readConverterExp()")
|
|
|
private Long inputOssId;
|
|
|
|
|
|
- /** 输入路径 */
|
|
|
+ /**
|
|
|
+ * 输入路径
|
|
|
+ */
|
|
|
@ExcelProperty(value = "输入路径")
|
|
|
private String inputPath;
|
|
|
|
|
|
- /** 输出路径 */
|
|
|
+ /**
|
|
|
+ * 输出路径
|
|
|
+ */
|
|
|
@ExcelProperty(value = "输出路径")
|
|
|
private String outputPath;
|
|
|
|
|
|
- /** zip文件输出路径 */
|
|
|
+ /**
|
|
|
+ * zip文件输出路径
|
|
|
+ */
|
|
|
@ExcelProperty(value = "zip文件输出路径")
|
|
|
private String zipFilePath;
|
|
|
|
|
|
private Long algorithmModelId;
|
|
|
+
|
|
|
+ private String type;
|
|
|
+ private String subsystem;
|
|
|
+ private String algorithmName;
|
|
|
+ private String modelName;
|
|
|
}
|