| | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 数简.任务结果实体类 |
| | | * |
| | | * @author WWW |
| | | * @date 2023-09-12 |
| | | */ |
| | | @SuppressWarnings("AlibabaLowerCamelCaseVariableNaming") |
| | | public class TaskResultEntity implements Serializable { |
| | | private static final long serialVersionUID = -6420150955559673365L; |
| | | |
| | | public TaskResultEntity() { |
| | | result = new ArrayList<>(); |
| | | this.result = new ArrayList<>(); |
| | | } |
| | | |
| | | private String command; |
| | |
| | | |
| | | private String name; |
| | | |
| | | /** |
| | | * 任务状态,0:创建,1:初始化,2:执行,3:完成,4:错误,5:取消 |
| | | */ |
| | | private Integer status; |
| | | |
| | | private Integer data_id; |