月球大数据地理空间分析展示平台-【后端】-月球后台服务
13693261870
2023-09-13 86bf08ff8f700356de6b8c68fb4013409499fd55
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
package com.moon.server.entity.shujian;
 
import java.io.Serializable;
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() {
        this.result = new ArrayList<>();
    }
 
    private String command;
 
    private String status;
 
    private List<Result> result;
 
    public String getCommand() {
        return command;
    }
 
    public void setCommand(String command) {
        this.command = command;
    }
 
    public String getStatus() {
        return status;
    }
 
    public void setStatus(String status) {
        this.status = status;
    }
 
    public List<Result> getResult() {
        return result;
    }
 
    public void setResult(List<Result> result) {
        this.result = result;
    }
 
    public class Result {
        public Result() {
        }
 
        /**
         * 任务名称
         */
        private String name;
 
        /**
         * 任务状态,0:创建,1:初始化,2:执行,3:完成,4:错误,5:取消
         */
        private Integer status;
 
        /**
         * 任务编号
         */
        private Integer data_id;
 
        /**
         * 描述
         */
        private String description;
 
        /**
         * 进度
         */
        private Double process;
 
        /**
         * 执行的命令
         */
        private Integer command;
 
        public String getName() {
            return name;
        }
 
        public void setName(String name) {
            this.name = name;
        }
 
        public Integer getStatus() {
            return status;
        }
 
        public void setStatus(Integer status) {
            this.status = status;
        }
 
        public Integer getData_id() {
            return data_id;
        }
 
        public void setData_id(Integer data_id) {
            this.data_id = data_id;
        }
 
        public String getDescription() {
            return description;
        }
 
        public void setDescription(String description) {
            this.description = description;
        }
 
        public Double getProcess() {
            return process;
        }
 
        public void setProcess(Double process) {
            this.process = process;
        }
 
        public Integer getCommand() {
            return command;
        }
 
        public void setCommand(Integer command) {
            this.command = command;
        }
    }
}