no message
This commit is contained in:
parent
d87332a121
commit
521f89bd54
|
@ -4,3 +4,4 @@ xiuosiot-backend/.mvn/
|
||||||
xiuosiot-backend/src/resources/mybatisGenerate/
|
xiuosiot-backend/src/resources/mybatisGenerate/
|
||||||
xiuosiot-frontend/dist/
|
xiuosiot-frontend/dist/
|
||||||
xiuosiot-frontend/node_modules/
|
xiuosiot-frontend/node_modules/
|
||||||
|
xiuosiot-backend/src/main/resources/mybatisGenerate/generatormapper/ProtocolProductInfoMapper.java
|
||||||
|
|
|
@ -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();
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue