Browse Source

根据任务id获取大气数据列表

tags/V1.0.1^2
chengwang 1 year ago
parent
commit
d982544353
2 changed files with 23 additions and 31 deletions
  1. +5
    -5
      tuoheng-service/tuoheng-admin/src/main/java/com/tuoheng/admin/entity/domain/AirData.java
  2. +18
    -26
      tuoheng-service/tuoheng-admin/src/main/java/com/tuoheng/admin/entity/vo/airData/AirDataExcelVo.java

+ 5
- 5
tuoheng-service/tuoheng-admin/src/main/java/com/tuoheng/admin/entity/domain/AirData.java View File

@@ -138,11 +138,6 @@ public class AirData extends BaseEntity {
*/
private String ph3;

/**
* PM1.0(单位ug/m3)
*/
private String pm10;

/**
* PM1.0(单位ug/m3)
*/
@@ -178,6 +173,11 @@ public class AirData extends BaseEntity {
*/
private String wrSo2;

/**
* 二氧化氮(单位ppm)
*/
private String n02;





+ 18
- 26
tuoheng-service/tuoheng-admin/src/main/java/com/tuoheng/admin/entity/vo/airData/AirDataExcelVo.java View File

@@ -21,7 +21,7 @@ public class AirDataExcelVo {
/**
* 采样点时间
*/
@ExcelProperty(value = {"项目名称: 监测单位:","采样点时间"},index = 0)
@ExcelProperty(value = {"项目名称: ","采样点时间"},index = 0)
private String cUtcTime;

/**
@@ -33,95 +33,87 @@ public class AirDataExcelVo {
/**
* 经度
*/
@ExcelProperty(value = {"项目名称: 监测单位:","经度"},index = 2)
@ExcelProperty(value = {"经度"},index = 2)
private String longitude;

/**
* 纬度
*/
@ExcelProperty(value = {"项目名称: 监测单位:","纬度"},index = 3)
@ExcelProperty(value = {"纬度"},index = 3)
private String latitude;

/**
* 温度
*/
@ExcelProperty(value = {"项目名称: 监测单位:","温度°C"},index = 4)
@ExcelProperty(value = {"温度°C"},index = 4)
private String temperature;

/**
* 湿度
*/
@ExcelProperty(value = {"项目名称: 监测单位:","湿度%"},index = 5)
@ExcelProperty(value = {"湿度%"},index = 5)
private String humidity;

/**
* 大气压
*/
@ExcelProperty(value = {"项目名称: 监测单位:","气压Pa"},index = 6)
@ExcelProperty(value = {"气压Pa"},index = 6)
private String pressure;

/**
*挥发性有机物(单位ppm)
*/
@ExcelProperty(value = {"项目名称: 监测单位:","VOCs ppm"},index = 7)
@ExcelProperty(value = {"VOCs ppm"},index = 7)
private String vocs;

/**
*二氧化硫(单位ppm)
*/
@ExcelProperty(value = {"项目名称: 监测单位:","SO2 ppd"},index = 8)
@ExcelProperty(value = {"SO2 ppd"},index = 8)
private String so2;

/**
* 一氧化碳(单位ppm)
*/
@ExcelProperty(value = {"项目名称: 监测单位:","CO ppm"},index = 9)
@ExcelProperty(value = {"CO ppm"},index = 9)
private String c0;

/**
* 二氧化氮
* 二氧化氮(单位ppm)
*/
//private String No2;
@ExcelProperty(value = {"NO2 ppb"},index = 10)
private String n02;

/**
* o3+NO2
*/
//private String o3_No2;
@ExcelProperty(value = {"o3+NO2 ppm"},index = 11)
private String ox;

/**
* PM1.0(单位ug/m3)
*/
@ExcelProperty(value = {"项目名称: 监测单位:","PM1.0 ug/m3"},index = 10)
@ExcelProperty(value = {"PM1.0 ug/m3"},index = 12)
private String pm10;

/**
*PM2.5(单位ug/m3)
*/
@ExcelProperty(value = {"项目名称: 监测单位:","PM2.5 ug/m3"},index = 11)
@ExcelProperty(value = {"PM2.5 ug/m3"},index = 13)
private String pm_2_5;

/**
*PM10(单位ug/m3)
*/
@ExcelProperty(value = {"项目名称: 监测单位:","PM10 ug/m3"},index = 12)
@ExcelProperty(value = {"PM10 ug/m3"},index = 14)
private String pm_10;

/**
* 设备序列号
*/
@ExcelProperty(value = {"项目名称: 监测单位:","设备序列号"},index = 13)
@ExcelProperty(value = {"设备序列号"},index = 15)
private String serial;













}

Loading…
Cancel
Save