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.
41 lines
600 B
41 lines
600 B
package com.whhj.entity;
|
|
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
/**
|
|
* @author lxg
|
|
* @date 2024/10/20 22:08
|
|
**/
|
|
@Getter
|
|
@Setter
|
|
public class DeviceInfo{
|
|
/**
|
|
* 命令类型
|
|
*/
|
|
private Integer commandType;
|
|
/**
|
|
* 设备sn
|
|
*/
|
|
private String sn;
|
|
/**
|
|
* 上报时间
|
|
*/
|
|
private Integer reportTime;
|
|
/**
|
|
* 心率
|
|
*/
|
|
private Integer heartRate;
|
|
/**
|
|
* 呼吸值
|
|
*/
|
|
private Integer breath;
|
|
/**
|
|
* 状态
|
|
*/
|
|
private Integer status;
|
|
/**
|
|
* 电量
|
|
*/
|
|
private Integer electricity;
|
|
}
|