package com.gkhy.fourierSpecialGasMonitor.entity.resp;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
/**
|
* @author Mr.huang
|
* @decription
|
* @date 2023/9/1 10:01
|
*/
|
@Data
|
public class WindRoseByTimeRespDTO implements Serializable {
|
|
private Long id;
|
|
private String equipmentId;
|
|
private LocalDateTime dataReceivingTime;
|
|
private Double windSpeed;
|
|
private int windDirection;
|
|
}
|