package com.ard.work.device.terrain.domain;
|
|
import com.ard.common.core.annotation.Excel;
|
import com.ard.common.core.web.domain.BaseEntity;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
/**
|
* 地形标定管理对象 ard_terrain_mark
|
*
|
* @author liusuyi
|
* @date 2024-06-22
|
*/
|
public class ArdTerrainMark extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* ID主键
|
*/
|
private String id;
|
|
/**
|
* 相机ID
|
*/
|
@Excel(name = "相机ID")
|
private String cameraId;
|
|
/**
|
* 经度
|
*/
|
@Excel(name = "经度")
|
private Double longitude;
|
|
/**
|
* 纬度
|
*/
|
@Excel(name = "纬度")
|
private Double latitude;
|
|
/**
|
* 俯仰
|
*/
|
@Excel(name = "俯仰")
|
private Double t;
|
|
/**
|
* 高层
|
*/
|
@Excel(name = "高层")
|
private Double altitude;
|
|
/**
|
* 所属部门
|
*/
|
@Excel(name = "所属部门")
|
private Long deptId;
|
|
/**
|
* 所属用户
|
*/
|
@Excel(name = "所属用户")
|
private Long userId;
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setCameraId(String cameraId) {
|
this.cameraId = cameraId;
|
}
|
|
public String getCameraId() {
|
return cameraId;
|
}
|
|
public void setLongitude(Double longitude) {
|
this.longitude = longitude;
|
}
|
|
public Double getLongitude() {
|
return longitude;
|
}
|
|
public void setLatitude(Double latitude) {
|
this.latitude = latitude;
|
}
|
|
public Double getLatitude() {
|
return latitude;
|
}
|
|
public void setT(Double t) {
|
this.t = t;
|
}
|
|
public Double getT() {
|
return t;
|
}
|
|
public void setAltitude(Double altitude) {
|
this.altitude = altitude;
|
}
|
|
public Double getAltitude() {
|
return altitude;
|
}
|
|
public void setDeptId(Long deptId) {
|
this.deptId = deptId;
|
}
|
|
public Long getDeptId() {
|
return deptId;
|
}
|
|
public void setUserId(Long userId) {
|
this.userId = userId;
|
}
|
|
public Long getUserId() {
|
return userId;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("cameraId", getCameraId())
|
.append("longitude", getLongitude())
|
.append("latitude", getLatitude())
|
.append("t", getT())
|
.append("altitude", getAltitude())
|
.append("deptId", getDeptId())
|
.append("userId", getUserId())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.toString();
|
}
|
}
|