| | |
| | | package com.ruoyi.device.camera.domain; |
| | | |
| | | import com.ruoyi.device.channel.domain.ArdChannel; |
| | | import com.sun.jna.Structure; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Data; |
| | |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 相机设备对象 ard_cameras |
| | |
| | | @NoArgsConstructor |
| | | public class ArdCameras extends BaseEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | public ArdCameras(String gdtype) |
| | | { |
| | | this.gdtype=gdtype; |
| | | } |
| | | /** |
| | | * id |
| | | */ |
| | |
| | | @Excel(name = "光电类型") |
| | | private String gdtype; |
| | | |
| | | /** |
| | | * 通道号 |
| | | */ |
| | | @Excel(name = "通道号") |
| | | private Integer channel; |
| | | |
| | | |
| | | /** |
| | | * 经度 |
| | |
| | | * 部门ID |
| | | */ |
| | | @Excel(name = "部门ID") |
| | | private Integer deptId; |
| | | private Long deptId; |
| | | |
| | | /** |
| | | * 方位角 |
| | |
| | | * 最大可视距离 |
| | | */ |
| | | @Excel(name = "最大可视距离") |
| | | private String camMaxVisibleDistance; |
| | | |
| | | private Double camMaxVisibleDistance; |
| | | /** 相机报警引导开关 */ |
| | | @Excel(name = "相机报警引导开关") |
| | | private Integer camAlarmGuideEnable; |
| | | /** |
| | | * 所属塔ID |
| | | */ |
| | |
| | | private Integer loginId; |
| | | private String operatorId; |
| | | private Date operatorExpired; |
| | | /** |
| | | * 通道号 |
| | | */ |
| | | private Integer chanNo; |
| | | /** |
| | | * 起始通道号 |
| | | */ |
| | | private Integer startDChan; |
| | | /** |
| | | * 通道数 |
| | | */ |
| | | @Excel(name = "通道数") |
| | | private Integer chanNum; |
| | | /** |
| | | * 通道 |
| | | */ |
| | | private List<ArdChannel> channelList; |
| | | } |