| | |
| | | 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 |
| | |
| | | @Excel(name = "光电类型") |
| | | private String gdtype; |
| | | |
| | | /** |
| | | * 通道号 |
| | | */ |
| | | @Excel(name = "通道号") |
| | | private Integer channel; |
| | | |
| | | |
| | | /** |
| | | * 经度 |
| | |
| | | private Integer loginId; |
| | | private String operatorId; |
| | | private Date operatorExpired; |
| | | /** |
| | | * 通道号 |
| | | */ |
| | | private Integer chanNo; |
| | | /** |
| | | * 起始通道号 |
| | | */ |
| | | private Integer startDChan; |
| | | /** |
| | | * 通道数 |
| | | */ |
| | | @Excel(name = "通道数") |
| | | private Integer chanNum; |
| | | /** |
| | | * 通道 |
| | | */ |
| | | private List<ArdChannel> channelList; |
| | | } |