package com.ard.work.api.domian;
|
|
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_tiles3d
|
*
|
* @author ruoyi
|
* @date 2024-09-11
|
*/
|
public class ArdTiles3d extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** ID */
|
private String tilesId;
|
|
/** 实景三维名称 */
|
@Excel(name = "实景三维名称")
|
private String tilesName;
|
|
/** 实景三维路径 */
|
@Excel(name = "实景三维路径")
|
private String tilesUrl;
|
|
/** 是否默认加载ff默认初始化 */
|
@Excel(name = "是否默认加载ff默认初始化")
|
private String tilesType;
|
|
/** x轴偏移 */
|
@Excel(name = "x轴偏移")
|
private Float tilesX;
|
|
/** y轴偏移 */
|
@Excel(name = "y轴偏移")
|
private Float tilesY;
|
|
/** z轴偏移 */
|
@Excel(name = "z轴偏移")
|
private Float tilesZ;
|
|
/** 相机坐标 */
|
@Excel(name = "相机坐标")
|
private String camPoi;
|
|
/** 相机方位 */
|
@Excel(name = "相机方位")
|
private Float camHeading;
|
|
/** 相机俯仰 */
|
@Excel(name = "相机俯仰")
|
private Float camPitch;
|
|
/** 屏幕空间误差 */
|
@Excel(name = "屏幕空间误差")
|
private Integer maximumScreenSpaceError;
|
|
/** 内存最大使用量 */
|
@Excel(name = "内存最大使用量")
|
private Integer maximumMemoryUsage;
|
|
/** 自动超清化模型 */
|
@Excel(name = "自动超清化模型")
|
private Float cullRequestsWhileMovingMultiplier;
|
|
/** 模型加载速度 */
|
@Excel(name = "模型加载速度")
|
private Float dynamicScreenSpaceErrorDensity;
|
|
/** 部门id */
|
@Excel(name = "部门id")
|
private Long deptId;
|
|
/** 用户id */
|
@Excel(name = "用户id")
|
private Long userId;
|
|
public void setTilesId(String tilesId)
|
{
|
this.tilesId = tilesId;
|
}
|
|
public String getTilesId()
|
{
|
return tilesId;
|
}
|
public void setTilesName(String tilesName)
|
{
|
this.tilesName = tilesName;
|
}
|
|
public String getTilesName()
|
{
|
return tilesName;
|
}
|
public void setTilesUrl(String tilesUrl)
|
{
|
this.tilesUrl = tilesUrl;
|
}
|
|
public String getTilesUrl()
|
{
|
return tilesUrl;
|
}
|
public void setTilesType(String tilesType)
|
{
|
this.tilesType = tilesType;
|
}
|
|
public String getTilesType()
|
{
|
return tilesType;
|
}
|
|
public Float getTilesX() {
|
return tilesX;
|
}
|
|
public void setTilesX(Float tilesX) {
|
this.tilesX = tilesX;
|
}
|
|
public Float getTilesY() {
|
return tilesY;
|
}
|
|
public void setTilesY(Float tilesY) {
|
this.tilesY = tilesY;
|
}
|
|
public Float getTilesZ() {
|
return tilesZ;
|
}
|
|
public void setTilesZ(Float tilesZ) {
|
this.tilesZ = tilesZ;
|
}
|
|
public String getCamPoi() {
|
return camPoi;
|
}
|
|
public void setCamPoi(String camPoi) {
|
this.camPoi = camPoi;
|
}
|
|
public Float getCamHeading() {
|
return camHeading;
|
}
|
|
public void setCamHeading(Float camHeading) {
|
this.camHeading = camHeading;
|
}
|
|
public Float getCamPitch() {
|
return camPitch;
|
}
|
|
public void setCamPitch(Float camPitch) {
|
this.camPitch = camPitch;
|
}
|
|
public Integer getMaximumScreenSpaceError() {
|
return maximumScreenSpaceError;
|
}
|
|
public void setMaximumScreenSpaceError(Integer maximumScreenSpaceError) {
|
this.maximumScreenSpaceError = maximumScreenSpaceError;
|
}
|
|
public Integer getMaximumMemoryUsage() {
|
return maximumMemoryUsage;
|
}
|
|
public void setMaximumMemoryUsage(Integer maximumMemoryUsage) {
|
this.maximumMemoryUsage = maximumMemoryUsage;
|
}
|
|
public Float getCullRequestsWhileMovingMultiplier() {
|
return cullRequestsWhileMovingMultiplier;
|
}
|
|
public void setCullRequestsWhileMovingMultiplier(Float cullRequestsWhileMovingMultiplier) {
|
this.cullRequestsWhileMovingMultiplier = cullRequestsWhileMovingMultiplier;
|
}
|
|
public Float getDynamicScreenSpaceErrorDensity() {
|
return dynamicScreenSpaceErrorDensity;
|
}
|
|
public void setDynamicScreenSpaceErrorDensity(Float dynamicScreenSpaceErrorDensity) {
|
this.dynamicScreenSpaceErrorDensity = dynamicScreenSpaceErrorDensity;
|
}
|
|
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("tilesId", getTilesId())
|
.append("tilesName", getTilesName())
|
.append("tilesUrl", getTilesUrl())
|
.append("tilesType", getTilesType())
|
.append("tilesX", getTilesX())
|
.append("tilesY", getTilesY())
|
.append("tilesZ", getTilesZ())
|
.append("camPoi", getCamPoi())
|
.append("camHeading", getCamHeading())
|
.append("camPitch", getCamPitch())
|
.append("maximumScreenSpaceError", getMaximumScreenSpaceError())
|
.append("maximumMemoryUsage", getMaximumMemoryUsage())
|
.append("cullRequestsWhileMovingMultiplier", getCullRequestsWhileMovingMultiplier())
|
.append("dynamicScreenSpaceErrorDensity", getDynamicScreenSpaceErrorDensity())
|
.append("deptId", getDeptId())
|
.append("userId", getUserId())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.toString();
|
}
|
}
|