package com.ard.work.point.tower.domain; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; import com.ard.common.core.annotation.Excel; import com.ard.common.core.web.domain.BaseEntity; /** * 塔管理对象 ard_tower * * @author ruoyi * @date 2024-09-07 */ public class ArdTower extends BaseEntity { private static final long serialVersionUID = 1L; private String id; /** 名称 */ @Excel(name = "名称") private String name; /** 经度 */ @Excel(name = "经度") private Double longitude; /** 纬度 */ @Excel(name = "纬度") private Double latitude; /** 高程 */ @Excel(name = "高程") private Double altitude; /** 创建人主键 */ @Excel(name = "创建人主键") private String userId; /** 部门主键 */ @Excel(name = "部门主键") private Long deptId; /** 朝向 */ @Excel(name = "朝向") private String direction; /** 塔缩放 */ @Excel(name = "塔缩放") private String towerScale; /** 塔路径 */ @Excel(name = "塔路径") private String towerPath; /** 光电偏移 */ @Excel(name = "光电偏移") private String peOffset; /** 光电缩放 */ @Excel(name = "光电缩放") private String peScale; /** 光电路径 */ @Excel(name = "光电路径") private String pePath; /** 雷达偏移 */ @Excel(name = "雷达偏移") private String radarOffset; /** 雷达缩放 */ @Excel(name = "雷达偏移") private String radarScale; /** 雷达路径 */ @Excel(name = "雷达路径") private String radarPath; public void setId(String id) { this.id = id; } public String getId() { return id; } public void setName(String name) { this.name = name; } public String getName() { return name; } 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 setAltitude(Double altitude) { this.altitude = altitude; } public Double getAltitude() { return altitude; } public void setUserId(String userId) { this.userId = userId; } public String getUserId() { return userId; } public void setDeptId(Long deptId) { this.deptId = deptId; } public Long getDeptId() { return deptId; } public void setDirection(String direction) { this.direction = direction; } public String getDirection() { return direction; } public void setTowerScale(String towerScale) { this.towerScale = towerScale; } public String getTowerScale() { return towerScale; } public void setTowerPath(String towerPath) { this.towerPath = towerPath; } public String getTowerPath() { return towerPath; } public void setPeOffset(String peOffset) { this.peOffset = peOffset; } public String getPeOffset() { return peOffset; } public void setPeScale(String peScale) { this.peScale = peScale; } public String getPeScale() { return peScale; } public void setPePath(String pePath) { this.pePath = pePath; } public String getPePath() { return pePath; } public void setRadarOffset(String radarOffset) { this.radarOffset = radarOffset; } public String getRadarOffset() { return radarOffset; } public void setRadarScale(String radarScale) { this.radarScale = radarScale; } public String getRadarScale() { return radarScale; } public void setRadarPath(String radarPath) { this.radarPath = radarPath; } public String getRadarPath() { return radarPath; } @Override public String toString() { return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) .append("id", getId()) .append("name", getName()) .append("longitude", getLongitude()) .append("latitude", getLatitude()) .append("altitude", getAltitude()) .append("userId", getUserId()) .append("deptId", getDeptId()) .append("createBy", getCreateBy()) .append("createTime", getCreateTime()) .append("updateBy", getUpdateBy()) .append("updateTime", getUpdateTime()) .append("direction", getDirection()) .append("towerScale", getTowerScale()) .append("towerPath", getTowerPath()) .append("peOffset", getPeOffset()) .append("peScale", getPeScale()) .append("pePath", getPePath()) .append("radarOffset", getRadarOffset()) .append("radarScale", getRadarScale()) .append("radarPath", getRadarPath()) .toString(); } }