feat: 增加最高温度位置

dev
huangfeng 1 month ago
parent ff491e539f
commit b8c7a68c13

@ -107,6 +107,12 @@ public class CwzzTemperature extends Pojo implements Serializable {
@FieldName("min_tmp") @FieldName("min_tmp")
private String minTmp; private String minTmp;
/**
*
*/
@FieldName("max_location")
private String maxLocation;
/** /**
* *
*/ */

@ -103,7 +103,6 @@ public class CwzzTemperatureVo implements Serializable {
/** /**
* *
*/ */
@ExcelAnnotation(exportName = "最低温度(℃)")
private String minTmp; private String minTmp;
/** /**
@ -112,6 +111,12 @@ public class CwzzTemperatureVo implements Serializable {
@ExcelAnnotation(exportName = "告警温度位置") @ExcelAnnotation(exportName = "告警温度位置")
private String alarmLocation; private String alarmLocation;
/**
*
*/
@ExcelAnnotation(exportName = "最高温度位置")
private String maxLocation;
/** /**
* CAC 17 * CAC 17
*/ */

@ -9,6 +9,7 @@
t.max_tmp as maxTmp, t.max_tmp as maxTmp,
t.min_tmp as minTmp, t.min_tmp as minTmp,
t.alarm_location as alarmLocation, t.alarm_location as alarmLocation,
t.max_location as maxLocation,
t.sensor_id as sensorId, t.sensor_id as sensorId,
t.time_stamp as timeStamp, t.time_stamp as timeStamp,
t.main_tree_id as mainTreeId, t.main_tree_id as mainTreeId,

Loading…
Cancel
Save