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
| package com.yssh.entity;
|
| import java.io.Serializable;
|
| import lombok.AllArgsConstructor;
| import lombok.Data;
| import lombok.NoArgsConstructor;
|
| import com.github.biyanwen.annotation.CsvProperty;
|
| @Data
| @NoArgsConstructor
| @AllArgsConstructor
| public class SuYuan implements Serializable {
|
| private static final long serialVersionUID = 2004641202487367361L;
| private String id;
| @CsvProperty(index = 0)
| private Integer x;
| @CsvProperty(index = 1)
| private Integer y;
| @CsvProperty(index = 2)
| private Integer z;
| @CsvProperty(index = 3)
| private Double u;
| @CsvProperty(index = 4)
| private Double v;
| @CsvProperty(index = 5)
| private Double w;
| @CsvProperty(index = 6)
| private Double c;
| /*private Double lon;
| private Double lat;
| private Date time;*/
| }
|
|