| | |
| | | package com.ycl.platform.domain.entity; |
| | | |
| | | import annotation.Excel; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ycl.system.entity.BaseEntity; |
| | | |
| | |
| | | @Excel(name = "设备经度,至少保留六位小数") |
| | | private String longitude; |
| | | |
| | | /** 设备维度,至少保留六位小数 */ |
| | | /** 设备纬度,至少保留六位小数 */ |
| | | @Excel(name = "设备维度,至少保留六位小数") |
| | | private String latitude; |
| | | |
| | |
| | | @Excel(name = "管理单位联系方式") |
| | | private String muContactInfo; |
| | | |
| | | /** 录象保存天数 0 - 2147483647 */ |
| | | /** 录像保存天数 0 - 2147483647 */ |
| | | @Excel(name = "录象保存天数 0 - 2147483647") |
| | | private Long storageDays; |
| | | |
| | |
| | | @Excel(name = "类型编码 : [131.摄像机编码;132.网络摄像机编码;]") |
| | | private Long lxbm; |
| | | |
| | | @Excel(name = "异常原因") |
| | | private String reason; |
| | | |
| | | @Excel(name = "是否生成异常工单") |
| | | private Long defaultOrder; |
| | | |
| | | @Excel(name ="异常恢复标识") |
| | | private Long recovery; |
| | | |
| | | @Excel(name = "异常恢复时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date recoveryTime; |
| | | |
| | | public Long getDefaultOrder() { |
| | | return defaultOrder; |
| | | } |
| | | |
| | | public void setDefaultOrder(Long defaultOrder) { |
| | | this.defaultOrder = defaultOrder; |
| | | } |
| | | |
| | | public void setInstalledTime(Date installedTime) { |
| | | this.installedTime = installedTime; |
| | | } |
| | |
| | | public Date getInstalledTime() { |
| | | return installedTime; |
| | | } |
| | | |
| | | public Date getRecoveryTime() { |
| | | return recoveryTime; |
| | | } |
| | | |
| | | public void setRecoveryTime(Date recoveryTime) { |
| | | this.recoveryTime = recoveryTime; |
| | | } |
| | | |
| | | public Long getRecovery() { |
| | | return recovery; |
| | | } |
| | | |
| | | public void setRecovery(Long recovery) { |
| | | this.recovery = recovery; |
| | | } |
| | | |
| | | public String getReason() { |
| | | return reason; |
| | | } |
| | | |
| | | public void setReason(String reason) { |
| | | this.reason = reason; |
| | | } |
| | | |
| | | |
| | | |
| | | public void setId(Long id) |
| | | { |
| | |
| | | ", cameraDept='" + cameraDept + '\'' + |
| | | ", hybm='" + hybm + '\'' + |
| | | ", lxbm=" + lxbm + |
| | | ", reason='" + reason + '\'' + |
| | | ", defaultOrder=" + defaultOrder + |
| | | ", recovery=" + recovery + |
| | | ", recoveryTime=" + recoveryTime + |
| | | '}'; |
| | | } |
| | | } |