smart-switch-java/smart-switch-service/src/main/java/com/ruoyi/iot/domain/IotDeviceInfo.java
2024-06-14 17:12:03 +08:00

51 lines
1.3 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.ruoyi.iot.domain;
import com.ruoyi.ss.device.domain.enums.DeviceOutageWay;
import lombok.Builder;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.math.BigDecimal;
import java.util.Date;
/**
* 设备传来的数据
* @author wjh
* 2024/3/20
*/
@Data
@Builder
public class IotDeviceInfo {
private String id; // iot设备id
private String mac; // 设备mac
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date at; // 时间
private BigDecimal v; // 电压
private BigDecimal p; // 功率
private BigDecimal a; // 电流
private BigDecimal w; // 电量
private String s; // 开关状态0不通电1闭合通电
private BigDecimal m; // 剩余电量(度)
private String set; // 欠费断电方式
private BigDecimal time; // 剩余时间(秒)
private String model;
public static IotDeviceInfo newDefaultInstance() {
return IotDeviceInfo.builder()
.v(BigDecimal.ZERO)
.p(BigDecimal.ZERO)
.a(BigDecimal.ZERO)
.w(BigDecimal.ZERO)
.s("0")
.m(BigDecimal.ZERO)
.set(DeviceOutageWay.IMMEDIATE.getValue())
.time(BigDecimal.ZERO)
.model(null)
.build();
}
}