2026-01-16 19:13:33 +08:00
|
|
|
package com.ruoyi.device.domain.model;
|
|
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 机场领域模型
|
|
|
|
|
* Domain 层对外暴露的对象
|
|
|
|
|
*
|
|
|
|
|
* @author ruoyi
|
|
|
|
|
* @date 2026-01-16
|
|
|
|
|
*/
|
|
|
|
|
public class Dock implements Serializable
|
|
|
|
|
{
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
/** 机场主键 */
|
|
|
|
|
private Long dockId;
|
|
|
|
|
|
|
|
|
|
/** 机场名称 */
|
|
|
|
|
private String dockName;
|
|
|
|
|
|
|
|
|
|
/** 机场位置 */
|
|
|
|
|
private String dockLocation;
|
|
|
|
|
|
|
|
|
|
/** 设备表主键 */
|
|
|
|
|
private Long deviceId;
|
|
|
|
|
|
|
|
|
|
/** 创建者 */
|
|
|
|
|
private String createBy;
|
|
|
|
|
|
|
|
|
|
/** 创建时间 */
|
|
|
|
|
private Date createTime;
|
|
|
|
|
|
|
|
|
|
/** 更新者 */
|
|
|
|
|
private String updateBy;
|
|
|
|
|
|
|
|
|
|
/** 更新时间 */
|
|
|
|
|
private Date updateTime;
|
|
|
|
|
|
|
|
|
|
/** 备注 */
|
|
|
|
|
private String remark;
|
|
|
|
|
|
2026-01-28 16:21:09 +08:00
|
|
|
/** 最后活跃时间 */
|
|
|
|
|
private Date lastActiveTime;
|
|
|
|
|
|
2026-03-14 09:26:42 +08:00
|
|
|
/** 舱内视频地址 */
|
|
|
|
|
private String cabinVideoUrl;
|
|
|
|
|
|
|
|
|
|
/** 舱外视频地址 */
|
|
|
|
|
private String outsideVideoUrl;
|
|
|
|
|
|
|
|
|
|
/** 直播视频地址 */
|
|
|
|
|
private String liveVideoUrl;
|
|
|
|
|
|
2026-01-16 19:13:33 +08:00
|
|
|
public Long getDockId()
|
|
|
|
|
{
|
|
|
|
|
return dockId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setDockId(Long dockId)
|
|
|
|
|
{
|
|
|
|
|
this.dockId = dockId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getDockName()
|
|
|
|
|
{
|
|
|
|
|
return dockName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setDockName(String dockName)
|
|
|
|
|
{
|
|
|
|
|
this.dockName = dockName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getDockLocation()
|
|
|
|
|
{
|
|
|
|
|
return dockLocation;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setDockLocation(String dockLocation)
|
|
|
|
|
{
|
|
|
|
|
this.dockLocation = dockLocation;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getDeviceId()
|
|
|
|
|
{
|
|
|
|
|
return deviceId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setDeviceId(Long deviceId)
|
|
|
|
|
{
|
|
|
|
|
this.deviceId = deviceId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getCreateBy()
|
|
|
|
|
{
|
|
|
|
|
return createBy;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCreateBy(String createBy)
|
|
|
|
|
{
|
|
|
|
|
this.createBy = createBy;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Date getCreateTime()
|
|
|
|
|
{
|
|
|
|
|
return createTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCreateTime(Date createTime)
|
|
|
|
|
{
|
|
|
|
|
this.createTime = createTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getUpdateBy()
|
|
|
|
|
{
|
|
|
|
|
return updateBy;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setUpdateBy(String updateBy)
|
|
|
|
|
{
|
|
|
|
|
this.updateBy = updateBy;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Date getUpdateTime()
|
|
|
|
|
{
|
|
|
|
|
return updateTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setUpdateTime(Date updateTime)
|
|
|
|
|
{
|
|
|
|
|
this.updateTime = updateTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getRemark()
|
|
|
|
|
{
|
|
|
|
|
return remark;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setRemark(String remark)
|
|
|
|
|
{
|
|
|
|
|
this.remark = remark;
|
|
|
|
|
}
|
2026-01-28 16:21:09 +08:00
|
|
|
|
|
|
|
|
public Date getLastActiveTime()
|
|
|
|
|
{
|
|
|
|
|
return lastActiveTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setLastActiveTime(Date lastActiveTime)
|
|
|
|
|
{
|
|
|
|
|
this.lastActiveTime = lastActiveTime;
|
|
|
|
|
}
|
2026-03-14 09:26:42 +08:00
|
|
|
|
|
|
|
|
public String getCabinVideoUrl()
|
|
|
|
|
{
|
|
|
|
|
return cabinVideoUrl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCabinVideoUrl(String cabinVideoUrl)
|
|
|
|
|
{
|
|
|
|
|
this.cabinVideoUrl = cabinVideoUrl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getOutsideVideoUrl()
|
|
|
|
|
{
|
|
|
|
|
return outsideVideoUrl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setOutsideVideoUrl(String outsideVideoUrl)
|
|
|
|
|
{
|
|
|
|
|
this.outsideVideoUrl = outsideVideoUrl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getLiveVideoUrl()
|
|
|
|
|
{
|
|
|
|
|
return liveVideoUrl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setLiveVideoUrl(String liveVideoUrl)
|
|
|
|
|
{
|
|
|
|
|
this.liveVideoUrl = liveVideoUrl;
|
|
|
|
|
}
|
2026-01-16 19:13:33 +08:00
|
|
|
}
|