‘liusuyi’
2023-10-08 b9c9cfff20129a4cb787b752c900da2d7fe7c4eb
ard-work/src/main/java/com/ruoyi/device/camera/domain/ArdCameras.java
@@ -1,5 +1,6 @@
package com.ruoyi.device.camera.domain;
import com.ruoyi.device.channel.domain.ArdChannel;
import com.sun.jna.Structure;
import lombok.AllArgsConstructor;
import lombok.Data;
@@ -8,6 +9,7 @@
import com.ruoyi.common.core.domain.BaseEntity;
import java.util.Date;
import java.util.List;
/**
 * 相机设备对象 ard_cameras
@@ -72,11 +74,7 @@
    @Excel(name = "光电类型")
    private String gdtype;
    /**
     * 通道号
     */
    @Excel(name = "通道号")
    private Integer channel;
    /**
     * 经度
@@ -106,7 +104,7 @@
     * 部门ID
     */
    @Excel(name = "部门ID")
    private Integer deptId;
    private Long deptId;
    /**
     * 方位角
@@ -173,6 +171,27 @@
     * 登录ID
     */
    private Integer loginId;
    /**
     * 在线状态 0-离线 1-在线
     */
    private String state;
    private String operatorId;
    private Date operatorExpired;
    /**
     * 通道号
     */
    private Integer chanNo;
    /**
     * 起始通道号
     */
    private Integer startDChan;
    /**
     * 通道数
     */
    @Excel(name = "通道数")
    private Integer chanNum;
    /**
     * 通道
     */
    private List<ArdChannel> channelList;
}