package com.javaweb.geo.vo;
|
|
import com.javaweb.geo.domain.HandleException;
|
|
import java.util.Date;
|
|
/**
|
* @author mzy-cxy
|
*/
|
public class ExceptionDistanceVo{
|
|
// 记录编号
|
private String code;
|
|
//偏差距离
|
private Double distance;
|
|
// 经度
|
private Double lng;
|
|
// 维度
|
private Double lat;
|
|
//记录类型
|
private String recordType;
|
|
// 定位时间
|
private Date gpsTime;
|
|
/** 记录ids */
|
private String ids;
|
|
/** 记录起始深度 */
|
private Double beginDepth;
|
|
/** 记录终止深度 */
|
private Double endDepth;
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public Double getDistance() {
|
return distance;
|
}
|
|
public void setDistance(Double distance) {
|
this.distance = distance;
|
}
|
|
public Double getLng() {
|
return lng;
|
}
|
|
public void setLng(Double lng) {
|
this.lng = lng;
|
}
|
|
public Double getLat() {
|
return lat;
|
}
|
|
public void setLat(Double lat) {
|
this.lat = lat;
|
}
|
|
public String getRecordType() {
|
return recordType;
|
}
|
|
public void setRecordType(String recordType) {
|
this.recordType = recordType;
|
}
|
|
public Date getGpsTime() {
|
return gpsTime;
|
}
|
|
public void setGpsTime(Date gpsTime) {
|
this.gpsTime = gpsTime;
|
}
|
|
public String getIds() {
|
return ids;
|
}
|
|
public void setIds(String ids) {
|
this.ids = ids;
|
}
|
|
public Double getBeginDepth() {
|
return beginDepth;
|
}
|
|
public void setBeginDepth(Double beginDepth) {
|
this.beginDepth = beginDepth;
|
}
|
|
public Double getEndDepth() {
|
return endDepth;
|
}
|
|
public void setEndDepth(Double endDepth) {
|
this.endDepth = endDepth;
|
}
|
}
|