package com.cloud.model.device;
|
|
import com.cloud.model.common.BaseDataEntity;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @author 设备
|
* @date 2018-06-15
|
*/
|
@Data
|
public class Device extends BaseDataEntity<Device> implements Serializable {
|
|
/**
|
* '组织机构id'
|
*/
|
private Long orgId;
|
/**
|
* '名称'
|
*/
|
private String deviceName;
|
private String description;
|
/**
|
* '编号'
|
*/
|
private String deviceSn;
|
/**
|
* 'ip'
|
*/
|
private String ip;
|
/**
|
* '端口号'
|
*/
|
private String port;
|
|
/**
|
* '用户名'
|
*/
|
private String username;
|
/**
|
* '密码'
|
*/
|
private String password;
|
/**
|
* 排序
|
*/
|
private Integer showOrder;
|
|
/**
|
* 授权系统
|
*/
|
private String authorizationSystem;
|
/**
|
* 维保单位
|
*/
|
private String maintenanceUnit;
|
|
/**
|
* 系统集成单位
|
*/
|
private String systemIntegrator;
|
|
/**
|
* 设备供应商
|
*/
|
private String equipmentSupper;
|
|
/**
|
* 图标
|
*/
|
private String icon;
|
/**
|
* 设备类型
|
*/
|
private String deviceType;
|
/**
|
* 摄像机品牌
|
*/
|
private String cameraType;
|
/**
|
* 设备运行状态 0:未联网,1:联网
|
*/
|
private Integer state;
|
/**
|
* 'rtmp流地址'
|
*/
|
private String rtmpUrl;
|
/**
|
* '视频流地址'
|
*/
|
private String videoUrl;
|
/**
|
* '经度'
|
*/
|
private String longitude;
|
/**
|
* 纬度
|
*/
|
private String latitude;
|
/**
|
* 预留json
|
*/
|
private String revJson;
|
/**
|
* 所属区域(分组)
|
*/
|
// private String cameraArea;
|
//
|
// private String createBy;
|
//
|
// private Date createTime;
|
// private String updateBy;
|
// private Date updateTime;
|
// private Integer delFlag;
|
}
|