|
@@ -42,54 +42,78 @@ public class ToInfraredVo extends BaseEntity implements Serializable {
|
|
@ExcelProperty(value = "任务名称")
|
|
@ExcelProperty(value = "任务名称")
|
|
private String name;
|
|
private String name;
|
|
|
|
|
|
- /** 状态
|
|
|
|
- 0:未开始
|
|
|
|
- 1:进行中
|
|
|
|
- 2:完成
|
|
|
|
- 3:失败
|
|
|
|
- 4:中断 */
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 状态
|
|
|
|
+ * 0:未开始
|
|
|
|
+ * 1:进行中
|
|
|
|
+ * 2:完成
|
|
|
|
+ * 3:失败
|
|
|
|
+ * 4:中断
|
|
|
|
+ */
|
|
@ExcelProperty(value = "状态 ")
|
|
@ExcelProperty(value = "状态 ")
|
|
- private String status;
|
|
|
|
|
|
+ private String status;
|
|
|
|
|
|
- /** 开始时间 */
|
|
|
|
- @ExcelProperty(value = "开始时间")
|
|
|
|
- private Date startTime;
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 开始时间
|
|
|
|
+ */
|
|
|
|
+ @ExcelProperty(value = "开始时间")
|
|
|
|
+ private Date startTime;
|
|
|
|
|
|
- /** 结束时间 */
|
|
|
|
- @ExcelProperty(value = "结束时间")
|
|
|
|
- private Date endTime;
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 结束时间
|
|
|
|
+ */
|
|
|
|
+ @ExcelProperty(value = "结束时间")
|
|
|
|
+ private Date endTime;
|
|
|
|
|
|
- /** 耗时 */
|
|
|
|
- @ExcelProperty(value = "耗时")
|
|
|
|
- private Long costSecond;
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 耗时
|
|
|
|
+ */
|
|
|
|
+ @ExcelProperty(value = "耗时")
|
|
|
|
+ private Long costSecond;
|
|
|
|
|
|
- /** 日志 */
|
|
|
|
- @ExcelProperty(value = "日志")
|
|
|
|
- private String log;
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 日志
|
|
|
|
+ */
|
|
|
|
+ @ExcelProperty(value = "日志")
|
|
|
|
+ private String log;
|
|
|
|
|
|
- /** 备注 */
|
|
|
|
- @ExcelProperty(value = "备注")
|
|
|
|
- private String remarks;
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 备注
|
|
|
|
+ */
|
|
|
|
+ @ExcelProperty(value = "备注")
|
|
|
|
+ private String remarks;
|
|
|
|
|
|
- /** $column.columnComment */
|
|
|
|
- @ExcelProperty(value = "${column.columnComment}")
|
|
|
|
- private Integer delFlag;
|
|
|
|
|
|
+ /**
|
|
|
|
+ * $column.columnComment
|
|
|
|
+ */
|
|
|
|
+ @ExcelProperty(value = "${column.columnComment}")
|
|
|
|
+ private Integer delFlag;
|
|
|
|
|
|
- /** $column.columnComment */
|
|
|
|
- @ExcelProperty(value = "${comment}", converter = ExcelDictConvert.class)
|
|
|
|
- @ExcelDictFormat(readConverterExp = "$column.readConverterExp()")
|
|
|
|
- private String url;
|
|
|
|
|
|
+ /**
|
|
|
|
+ * $column.columnComment
|
|
|
|
+ */
|
|
|
|
+ @ExcelProperty(value = "${comment}", converter = ExcelDictConvert.class)
|
|
|
|
+ @ExcelDictFormat(readConverterExp = "$column.readConverterExp()")
|
|
|
|
+ private String url;
|
|
|
|
|
|
- /** $column.columnComment */
|
|
|
|
- @ExcelProperty(value = "${comment}", converter = ExcelDictConvert.class)
|
|
|
|
- @ExcelDictFormat(readConverterExp = "$column.readConverterExp()")
|
|
|
|
- private Long inputOssId;
|
|
|
|
|
|
+ /**
|
|
|
|
+ * $column.columnComment
|
|
|
|
+ */
|
|
|
|
+ @ExcelProperty(value = "${comment}", converter = ExcelDictConvert.class)
|
|
|
|
+ @ExcelDictFormat(readConverterExp = "$column.readConverterExp()")
|
|
|
|
+ private Long inputOssId;
|
|
|
|
|
|
- /** 输入路径 */
|
|
|
|
- @ExcelProperty(value = "输入路径")
|
|
|
|
- private String inputPath;
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 输入路径
|
|
|
|
+ */
|
|
|
|
+ @ExcelProperty(value = "输入路径")
|
|
|
|
+ private String inputPath;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 输出路径
|
|
|
|
+ */
|
|
|
|
+ @ExcelProperty(value = "输出路径")
|
|
|
|
+ private String outputPath;
|
|
|
|
|
|
- /** 输出路径 */
|
|
|
|
- @ExcelProperty(value = "输出路径")
|
|
|
|
- private String outputPath;
|
|
|
|
|
|
+ private Long algorithmModelId;
|
|
}
|
|
}
|