package com.ruoyi.device.camera.domain;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.ruoyi.common.annotation.Excel;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
/**
|
* 相机俯仰差值参照点对象 ard_camera_pitch_point
|
*
|
* @author ard
|
* @date 2024-03-30
|
*/
|
public class ArdCameraPitchPoint extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** id */
|
private String id;
|
|
/** 经度 */
|
@Excel(name = "经度")
|
private String longitude;
|
|
/** 纬度 */
|
@Excel(name = "纬度")
|
private String latitude;
|
|
/** 高层 */
|
@Excel(name = "高层")
|
private String altitude;
|
|
/** 差值 */
|
@Excel(name = "差值")
|
private String difference;
|
|
/** 相机id */
|
@Excel(name = "相机id")
|
private String cameraId;
|
|
public void setId(String id)
|
{
|
this.id = id;
|
}
|
|
public String getId()
|
{
|
return id;
|
}
|
public void setLongitude(String longitude)
|
{
|
this.longitude = longitude;
|
}
|
|
public String getLongitude()
|
{
|
return longitude;
|
}
|
public void setLatitude(String latitude)
|
{
|
this.latitude = latitude;
|
}
|
|
public String getLatitude()
|
{
|
return latitude;
|
}
|
public void setAltitude(String altitude)
|
{
|
this.altitude = altitude;
|
}
|
|
public String getAltitude()
|
{
|
return altitude;
|
}
|
public void setDifference(String difference)
|
{
|
this.difference = difference;
|
}
|
|
public String getDifference()
|
{
|
return difference;
|
}
|
public void setCameraId(String cameraId)
|
{
|
this.cameraId = cameraId;
|
}
|
|
public String getCameraId()
|
{
|
return cameraId;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("id", getId())
|
.append("longitude", getLongitude())
|
.append("latitude", getLatitude())
|
.append("altitude", getAltitude())
|
.append("difference", getDifference())
|
.append("cameraId", getCameraId())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.toString();
|
}
|
}
|