|
|
@@ -7,7 +7,7 @@ import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
|
/**
|
|
|
* 配置data_electricity_local中的电气量来源对象 config_weather_local
|
|
|
- *
|
|
|
+ *
|
|
|
* @author oleauto
|
|
|
* @date 2026-06-22
|
|
|
*/
|
|
|
@@ -23,17 +23,17 @@ public class ConfigWeatherLocal extends BaseEntity
|
|
|
private Long configStationId;
|
|
|
|
|
|
/** 水平面总辐照度测点配置
|
|
|
- {
|
|
|
- device_id:1
|
|
|
- point_category:yc
|
|
|
- point_code:xxx
|
|
|
- } */
|
|
|
+ {
|
|
|
+ device_id:1
|
|
|
+ point_category:yc
|
|
|
+ point_code:xxx
|
|
|
+ } */
|
|
|
@Excel(name = "水平面总辐照度测点配置{device_id:1, point_category:yc,point_code:xxx}")
|
|
|
private String irradiance;
|
|
|
|
|
|
/** 斜面辐照度测点配置 */
|
|
|
@Excel(name = "斜面辐照度测点配置")
|
|
|
- private String irradiance;
|
|
|
+ private String inclinedIrradiance;
|
|
|
|
|
|
@Excel(name = "辐照度日累计测点配置")
|
|
|
private String dailyIrradiance;
|
|
|
@@ -61,12 +61,12 @@ public class ConfigWeatherLocal extends BaseEntity
|
|
|
@Excel(name = "风向测点配置")
|
|
|
private String windDirection;
|
|
|
|
|
|
- public void setId(Long id)
|
|
|
+ public void setId(Long id)
|
|
|
{
|
|
|
this.id = id;
|
|
|
}
|
|
|
|
|
|
- public Long getId()
|
|
|
+ public Long getId()
|
|
|
{
|
|
|
return id;
|
|
|
}
|
|
|
@@ -88,57 +88,57 @@ public class ConfigWeatherLocal extends BaseEntity
|
|
|
{
|
|
|
return irradiance;
|
|
|
}
|
|
|
- public void setIrradiance(String irradiance)
|
|
|
+ public void setInclinedIrradiance(String inclinedIrradiance)
|
|
|
{
|
|
|
- this.irradiance = irradiance;
|
|
|
+ this.inclinedIrradiance = inclinedIrradiance;
|
|
|
}
|
|
|
|
|
|
- public String getIrradiance()
|
|
|
+ public String getInclinedIrradiance()
|
|
|
{
|
|
|
- return irradiance;
|
|
|
+ return inclinedIrradiance;
|
|
|
}
|
|
|
- public void setTemperature(String temperature)
|
|
|
+ public void setTemperature(String temperature)
|
|
|
{
|
|
|
this.temperature = temperature;
|
|
|
}
|
|
|
|
|
|
- public String getTemperature()
|
|
|
+ public String getTemperature()
|
|
|
{
|
|
|
return temperature;
|
|
|
}
|
|
|
- public void setPressure(String pressure)
|
|
|
+ public void setPressure(String pressure)
|
|
|
{
|
|
|
this.pressure = pressure;
|
|
|
}
|
|
|
|
|
|
- public String getPressure()
|
|
|
+ public String getPressure()
|
|
|
{
|
|
|
return pressure;
|
|
|
}
|
|
|
- public void setHumidity(String humidity)
|
|
|
+ public void setHumidity(String humidity)
|
|
|
{
|
|
|
this.humidity = humidity;
|
|
|
}
|
|
|
|
|
|
- public String getHumidity()
|
|
|
+ public String getHumidity()
|
|
|
{
|
|
|
return humidity;
|
|
|
}
|
|
|
- public void setWindSpeed(String windSpeed)
|
|
|
+ public void setWindSpeed(String windSpeed)
|
|
|
{
|
|
|
this.windSpeed = windSpeed;
|
|
|
}
|
|
|
|
|
|
- public String getWindSpeed()
|
|
|
+ public String getWindSpeed()
|
|
|
{
|
|
|
return windSpeed;
|
|
|
}
|
|
|
- public void setWindDirection(String windDirection)
|
|
|
+ public void setWindDirection(String windDirection)
|
|
|
{
|
|
|
this.windDirection = windDirection;
|
|
|
}
|
|
|
|
|
|
- public String getWindDirection()
|
|
|
+ public String getWindDirection()
|
|
|
{
|
|
|
return windDirection;
|
|
|
}
|
|
|
@@ -162,19 +162,19 @@ public class ConfigWeatherLocal extends BaseEntity
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("id", getId())
|
|
|
- .append("configStationId", getConfigStationId())
|
|
|
- .append("horizontalIrradiance", getIrradiance())
|
|
|
- .append("irradiance", getIrradiance())
|
|
|
- .append("temperature", getTemperature())
|
|
|
- .append("pressure", getPressure())
|
|
|
- .append("humidity", getHumidity())
|
|
|
- .append("windSpeed", getWindSpeed())
|
|
|
- .append("windDirection", getWindDirection())
|
|
|
- .append("createTime", getCreateTime())
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
- .append("createBy", getCreateBy())
|
|
|
- .append("updateBy", getUpdateBy())
|
|
|
- .toString();
|
|
|
+ .append("id", getId())
|
|
|
+ .append("configStationId", getConfigStationId())
|
|
|
+ .append("horizontalIrradiance", getIrradiance())
|
|
|
+ .append("inclinedIrradiance", getInclinedIrradiance())
|
|
|
+ .append("temperature", getTemperature())
|
|
|
+ .append("pressure", getPressure())
|
|
|
+ .append("humidity", getHumidity())
|
|
|
+ .append("windSpeed", getWindSpeed())
|
|
|
+ .append("windDirection", getWindDirection())
|
|
|
+ .append("createTime", getCreateTime())
|
|
|
+ .append("updateTime", getUpdateTime())
|
|
|
+ .append("createBy", getCreateBy())
|
|
|
+ .append("updateBy", getUpdateBy())
|
|
|
+ .toString();
|
|
|
}
|
|
|
}
|