|
@@ -22,7 +22,6 @@ public class AlgorithmTaskTrackBo extends BaseEntity{
|
|
/**
|
|
/**
|
|
* 主键ID
|
|
* 主键ID
|
|
*/
|
|
*/
|
|
- @NotNull(message = "主键ID不能为空")
|
|
|
|
private Long id;
|
|
private Long id;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -34,45 +33,38 @@ public class AlgorithmTaskTrackBo extends BaseEntity{
|
|
/**
|
|
/**
|
|
* 任务状态
|
|
* 任务状态
|
|
*/
|
|
*/
|
|
- @NotBlank(message = "任务状态不能为空")
|
|
|
|
private String status;
|
|
private String status;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 开始时间
|
|
* 开始时间
|
|
*/
|
|
*/
|
|
- @NotNull(message = "开始时间不能为空")
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
private Date startTime;
|
|
private Date startTime;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 结束时间
|
|
* 结束时间
|
|
*/
|
|
*/
|
|
- @NotNull(message = "结束时间不能为空")
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
private Date endTime;
|
|
private Date endTime;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 耗时
|
|
* 耗时
|
|
*/
|
|
*/
|
|
- @NotNull(message = "耗时不能为空")
|
|
|
|
private Long costSecond;
|
|
private Long costSecond;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 日志
|
|
* 日志
|
|
*/
|
|
*/
|
|
- @NotBlank(message = "日志不能为空")
|
|
|
|
private String log;
|
|
private String log;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 备注
|
|
* 备注
|
|
*/
|
|
*/
|
|
- @NotBlank(message = "备注不能为空")
|
|
|
|
private String remarks;
|
|
private String remarks;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 系统
|
|
* 系统
|
|
*/
|
|
*/
|
|
- @NotBlank(message = "系统不能为空")
|
|
|
|
private String system;
|
|
private String system;
|
|
|
|
|
|
|
|
|