package com.smartearth.poiexcel.entity;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
public class OrgPoiExcel {
|
@ExcelProperty("唯一编号")
|
private String fingerId;
|
|
@ExcelProperty("待转换地址")
|
private String address;
|
|
@ExcelProperty("纬度")
|
private Double x;
|
|
@ExcelProperty("经度")
|
private Double y;
|
|
@ExcelProperty("标准地址")
|
private String standardAddress;
|
|
@Override
|
public String toString() {
|
return "OrgPoiExcel{" +
|
", fingerId='" + fingerId + '\'' +
|
", address='" + address + '\'' +
|
", x=" + x +
|
", y=" + y +
|
", standardAddress='" + standardAddress + '\'' +
|
'}';
|
}
|
|
public String getFingerId() {
|
return fingerId;
|
}
|
|
public void setFingerId(String fingerId) {
|
this.fingerId = fingerId;
|
}
|
|
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;
|
}
|
}
|