no message

This commit is contained in:
wty 2022-09-23 17:37:14 +08:00
parent d87332a121
commit 521f89bd54
2 changed files with 1 additions and 64 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@ xiuosiot-backend/.mvn/
xiuosiot-backend/src/resources/mybatisGenerate/
xiuosiot-frontend/dist/
xiuosiot-frontend/node_modules/
xiuosiot-backend/src/main/resources/mybatisGenerate/generatormapper/ProtocolProductInfoMapper.java

View File

@ -1,64 +0,0 @@
package com.aiit.xiuos.model;
import java.util.Date;
import lombok.Builder;
import lombok.Data;
@Data
@Builder
public class AvgDayData {
private String id;
private String windspeed;
private String noise;
private String methanal;
private String pm1_0;
private String pm2_5;
private String pm10;
private String so2;
private String temperature;
private String humidness;
private String co2;
private String airpressure;
private String tvoc;
private String ethanol;
private String methane;
private Date datatime;
public AvgDayData(String id, String windspeed, String noise, String methanal, String pm1_0, String pm2_5, String pm10, String so2, String temperature, String humidness, String co2, String airpressure, String tvoc, String ethanol, String methane, Date datatime) {
this.id = id;
this.windspeed = windspeed;
this.noise = noise;
this.methanal = methanal;
this.pm1_0 = pm1_0;
this.pm2_5 = pm2_5;
this.pm10 = pm10;
this.so2 = so2;
this.temperature = temperature;
this.humidness = humidness;
this.co2 = co2;
this.airpressure = airpressure;
this.tvoc = tvoc;
this.ethanol = ethanol;
this.methane = methane;
this.datatime = datatime;
}
public AvgDayData() {
super();
}
}