95 lines
1.8 KiB
Plaintext
95 lines
1.8 KiB
Plaintext
|
|
package com.sercurityControl.proteam.domain;
|
||
|
|
|
||
|
|
import com.securityControl.common.core.constant.annotation.Excel;
|
||
|
|
import com.securityControl.common.core.web.domain.BaseEntity;
|
||
|
|
import lombok.AllArgsConstructor;
|
||
|
|
import lombok.Data;
|
||
|
|
import lombok.NoArgsConstructor;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author szj
|
||
|
|
* @Date: 2021/10/22
|
||
|
|
* @description:无人机树实体类
|
||
|
|
*/
|
||
|
|
@Data
|
||
|
|
@AllArgsConstructor
|
||
|
|
@NoArgsConstructor
|
||
|
|
public class UavEntity extends BaseEntity {
|
||
|
|
private String parentId;
|
||
|
|
/**
|
||
|
|
* 无人机Id
|
||
|
|
**/
|
||
|
|
private String id;
|
||
|
|
/**
|
||
|
|
* 无人机名称
|
||
|
|
**/
|
||
|
|
private String title;
|
||
|
|
/**
|
||
|
|
* 设备编码
|
||
|
|
**/
|
||
|
|
private String macId;
|
||
|
|
/**
|
||
|
|
* puId
|
||
|
|
**/
|
||
|
|
private String puId;
|
||
|
|
/**
|
||
|
|
* 设备平台地址
|
||
|
|
**/
|
||
|
|
private String ipAddress;
|
||
|
|
/**
|
||
|
|
* 国标编码
|
||
|
|
**/
|
||
|
|
private String gbNumber;
|
||
|
|
/**
|
||
|
|
* 摄像头索引
|
||
|
|
**/
|
||
|
|
private int ballIndex;
|
||
|
|
/**
|
||
|
|
* 设备类型
|
||
|
|
*/
|
||
|
|
private String ballType;
|
||
|
|
/**
|
||
|
|
* 在线状态
|
||
|
|
**/
|
||
|
|
private String isOnline;
|
||
|
|
/**
|
||
|
|
* 开机时间
|
||
|
|
**/
|
||
|
|
private String openTime;
|
||
|
|
/**
|
||
|
|
* 关机时间
|
||
|
|
**/
|
||
|
|
private String closeTime;
|
||
|
|
/**
|
||
|
|
* 开机时长
|
||
|
|
**/
|
||
|
|
private String duraTime;
|
||
|
|
/**
|
||
|
|
* 当天日期
|
||
|
|
**/
|
||
|
|
private String currentDay;
|
||
|
|
/**
|
||
|
|
* 风险id
|
||
|
|
**/
|
||
|
|
private String workId;
|
||
|
|
/**
|
||
|
|
* 作业票编号
|
||
|
|
**/
|
||
|
|
private String ticketNo;
|
||
|
|
/**
|
||
|
|
* 无人机纬度
|
||
|
|
**/
|
||
|
|
private String lat;
|
||
|
|
/**
|
||
|
|
* 无人机经度
|
||
|
|
**/
|
||
|
|
private String lon;
|
||
|
|
|
||
|
|
private String bidCode;
|
||
|
|
private String tName;//统一视频名称
|
||
|
|
private String tCode;//统一视频编码
|
||
|
|
private String twCode;//统一前端协议编码
|
||
|
|
private String tdCode;//统一设备协议编码
|
||
|
|
|
||
|
|
}
|