月球大数据地理空间分析展示平台-【后端】-月球后台服务
1
13693261870
2024-11-13 e16f5fdfbc1c49f4c519f05b190e96e497253b51
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
package com.moon.server.entity.shujian;
 
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
 
@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;
        }
    }
}