Merge branch 'master' of codeup.aliyun.com:6428039c708c83a3fd907211/hzwmiot/hzwmiot24_java

This commit is contained in:
wyw
2024-08-19 11:21:38 +08:00
12 changed files with 177 additions and 15 deletions

View File

@ -0,0 +1,30 @@
package com.fastbee.common.model.vo.iot;
import lombok.Data;
/**
* 设备详细信息
*/
@Data
public class DeviceDetailVo {
//运行状态
private String runState;
//最后更新时间
private String lastDataTime;
//总累计用电量(kwh)
private String sumEle;
//总累计用水量(m³)
private String sumFlow;
//供电类型
private String gongDianType;
//环境温度
private String temp;
//电池电量
private String powerDianliang;
//电池电压
private String powerVolt;
//电池电流
private String powerCur;
}