|
|
|
@ -33,10 +33,20 @@ public class BasedataMontPatDevPatRoute extends BaseEntity { |
|
|
|
name = "坐标,格式:”x,y,z,a”,x、y、z为地图文 件的坐标,a为巡视设备航向角" |
|
|
|
) |
|
|
|
private String coordPixel; |
|
|
|
|
|
|
|
@Excel( |
|
|
|
name = "坐标,格式:”x,y,z,a”,x、y、z为地图文 件的坐标,a为巡视设备航向角" |
|
|
|
) |
|
|
|
private String coordinatePixel; |
|
|
|
@Excel( |
|
|
|
name = "经纬度,格式:”x,y”" |
|
|
|
) |
|
|
|
private String coordGeography; |
|
|
|
|
|
|
|
@Excel( |
|
|
|
name = "经纬度,格式:”x,y”" |
|
|
|
) |
|
|
|
private String coordinateGeography; |
|
|
|
private String createBy; |
|
|
|
private Date createTime; |
|
|
|
private String updateBy; |
|
|
|
@ -47,6 +57,16 @@ public class BasedataMontPatDevPatRoute extends BaseEntity { |
|
|
|
private String deleteFlag; |
|
|
|
private String patrolDeviceType; |
|
|
|
|
|
|
|
public void setCoordinatePixel(String coordinatePixel) { |
|
|
|
this.coordinatePixel = coordinatePixel; |
|
|
|
this.coordPixel = coordinatePixel; |
|
|
|
} |
|
|
|
|
|
|
|
public void setCoordinateGeography(String coordinateGeography) { |
|
|
|
this.coordinateGeography = coordinateGeography; |
|
|
|
this.coordGeography = coordinateGeography; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public String toString() { |
|
|
|
return "BasedataMontPatDevPatRoute{" + |
|
|
|
@ -56,7 +76,9 @@ public class BasedataMontPatDevPatRoute extends BaseEntity { |
|
|
|
", patrolDeviceName='" + patrolDeviceName + '\'' + |
|
|
|
", time='" + time + '\'' + |
|
|
|
", coordPixel='" + coordPixel + '\'' + |
|
|
|
", coordinatePixel='" + coordinatePixel + '\'' + |
|
|
|
", coordGeography='" + coordGeography + '\'' + |
|
|
|
", coordinateGeography='" + coordinateGeography + '\'' + |
|
|
|
", createBy='" + createBy + '\'' + |
|
|
|
", createTime=" + createTime + |
|
|
|
", updateBy='" + updateBy + '\'' + |
|
|
|
|