You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.4 KiB
78 lines
1.4 KiB
2 years ago
|
package com.psdc.entity;
|
||
|
|
||
|
import lombok.AllArgsConstructor;
|
||
|
import lombok.Data;
|
||
|
import lombok.NoArgsConstructor;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
|
||
|
@Data
|
||
|
@AllArgsConstructor
|
||
|
@NoArgsConstructor
|
||
|
/**
|
||
|
* 设备信息表
|
||
|
*
|
||
|
* @author stone
|
||
|
*/
|
||
|
public class PsdcDevice implements Serializable {
|
||
|
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/**
|
||
|
* 设备id
|
||
|
*/
|
||
|
private Integer deviceId;
|
||
|
/**
|
||
|
* 用户id
|
||
|
*/
|
||
|
private Integer userId;
|
||
|
/**
|
||
|
* 设备类型:1-监测设备,2-运行设备
|
||
|
*/
|
||
|
private Integer deviceType;
|
||
|
/**
|
||
|
* 设备sn
|
||
|
*/
|
||
|
private String deviceSn;
|
||
|
/**
|
||
|
* 设备名称
|
||
|
*/
|
||
|
private String deviceName;
|
||
|
/**
|
||
|
* 硬件版本
|
||
|
*/
|
||
|
private String hardVersion;
|
||
|
/**
|
||
|
* 软件版本
|
||
|
*/
|
||
|
private String softVersion;
|
||
|
/** 安装地址 */
|
||
|
private String deviceAddress ;
|
||
|
/** 启用时间 */
|
||
|
private String startTime ;
|
||
|
/**
|
||
|
* 设备状态:1-未激活,2-禁用,3-在线,4-离线
|
||
|
*/
|
||
|
private Integer deviceStatus;
|
||
|
/**
|
||
|
* 图片地址
|
||
|
*/
|
||
|
private String photoUrl;
|
||
|
/**
|
||
|
* 创建者
|
||
|
*/
|
||
|
private String createBy;
|
||
|
/**
|
||
|
* 创建时间
|
||
|
*/
|
||
|
private String createTime;
|
||
|
/**
|
||
|
* 修改者
|
||
|
*/
|
||
|
private String updateBy;
|
||
|
/**
|
||
|
* 修改时间
|
||
|
*/
|
||
|
private String updateTime;
|
||
|
}
|