1
13693261870
2022-09-16 fee60c3e25fac0982f3b8cb8feea7225c4ed22f8
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
package com.terra.proxy.bean;
 
import com.alibaba.excel.annotation.ExcelProperty;
 
public class E {
    @ExcelProperty(value = "content", index = 0)
    private String content;
    @ExcelProperty(value = "dataType", index = 1)
    private String dataType;
    @ExcelProperty(value = "endtm", index = 2)
    private String endtm;
    @ExcelProperty(value = "fileName", index = 3)
    private String fileName;
    @ExcelProperty(value = "filePath", index = 4)
    private String filePath;
    @ExcelProperty(value = "FileType", index = 5)
    private String FileType;
    @ExcelProperty(value = "id", index = 6)
    private String id;
    @ExcelProperty(value = "powerType", index = 7)
    private String powerType;
    @ExcelProperty(value = "starttm", index = 8)
    private String starttm;
    @ExcelProperty(value = "taskboat", index = 9)
    private String taskboat;
    @ExcelProperty(value = "taskid", index = 10)
    private String taskid;
    @ExcelProperty(value = "tasknm", index = 11)
    private String tasknm;
    @ExcelProperty(value = "taskunit", index = 12)
    private String taskunit;
    @ExcelProperty(value = "lgtd", index = 13)
    private String lgtd;
    @ExcelProperty(value = "lttd", index = 14)
    private String lttd;
    @ExcelProperty(value = "text", index = 15)
    private String text;
 
    private String wkt;
 
    private String geom;
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public String getDataType() {
        return dataType;
    }
 
    public void setDataType(String dataType) {
        this.dataType = dataType;
    }
 
    public String getEndtm() {
        return endtm;
    }
 
    public void setEndtm(String endtm) {
        this.endtm = endtm;
    }
 
    public String getFileName() {
        return fileName;
    }
 
    public void setFileName(String fileName) {
        this.fileName = fileName;
    }
 
    public String getFilePath() {
        return filePath;
    }
 
    public void setFilePath(String filePath) {
        this.filePath = filePath;
    }
 
    public String getFileType() {
        return FileType;
    }
 
    public void setFileType(String fileType) {
        FileType = fileType;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getPowerType() {
        return powerType;
    }
 
    public void setPowerType(String powerType) {
        this.powerType = powerType;
    }
 
    public String getStarttm() {
        return starttm;
    }
 
    public void setStarttm(String starttm) {
        this.starttm = starttm;
    }
 
    public String getTaskboat() {
        return taskboat;
    }
 
    public void setTaskboat(String taskboat) {
        this.taskboat = taskboat;
    }
 
    public String getTaskid() {
        return taskid;
    }
 
    public void setTaskid(String taskid) {
        this.taskid = taskid;
    }
 
    public String getTasknm() {
        return tasknm;
    }
 
    public void setTasknm(String tasknm) {
        this.tasknm = tasknm;
    }
 
    public String getTaskunit() {
        return taskunit;
    }
 
    public void setTaskunit(String taskunit) {
        this.taskunit = taskunit;
    }
 
    public String getLgtd() {
        return lgtd;
    }
 
    public void setLgtd(String lgtd) {
        this.lgtd = lgtd;
    }
 
    public String getLttd() {
        return lttd;
    }
 
    public void setLttd(String lttd) {
        this.lttd = lttd;
    }
 
    public String getText() {
        return text;
    }
 
    public void setText(String text) {
        this.text = text;
    }
 
    public String getWkt() {
        return wkt;
    }
 
    public void setWkt(String wkt) {
        this.wkt = wkt;
    }
 
    public String getGeom() {
        return geom;
    }
 
    public void setGeom(String geom) {
        this.geom = geom;
    }
}