北京经济技术开发区经开区虚拟城市项目-【后端】-服务,Poi,企业,地块等定制接口
AdaKing88
2023-07-26 1651fb641f0eb793002d00ec51edf1af73376f81
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
package com.smartearth.poiexcel.entity;
 
import com.alibaba.excel.annotation.ExcelProperty;
 
public class OrgPoiExcel {
 
    @ExcelProperty("待转换地址")
    private String address;
 
    @ExcelProperty("纬度")
    private Double x;
 
    @ExcelProperty("经度")
    private Double y;
 
    @ExcelProperty("标准地址")
    private String standardAddress;
 
    @Override
    public String toString() {
        return "OrgPoiExcel{" +
                ", address='" + address + '\'' +
                ", x=" + x +
                ", y=" + y +
                ", standardAddress='" + standardAddress + '\'' +
                '}';
    }
 
 
    public String getAddress() {
        return address;
    }
 
    public void setAddress(String address) {
        if (address != null) {
            address = address.replaceAll(" ", "");
        }
        this.address = address;
    }
 
    public Double getX() {
        return x;
    }
 
    public void setX(Double x) {
        this.x = x;
    }
 
    public Double getY() {
        return y;
    }
 
    public void setY(Double y) {
        this.y = y;
    }
 
    public String getStandardAddress() {
        return standardAddress;
    }
 
    public void setStandardAddress(String standardAddress) {
        this.standardAddress = standardAddress;
    }
}