|
@@ -3,6 +3,8 @@ package com.ruoyi.ems.domain;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.huashe.common.annotation.Excel;
|
|
|
import com.huashe.common.domain.BaseEntity;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
@@ -10,74 +12,49 @@ import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* 碳排放预测对象 adm_ems_ca_emission_forecast
|
|
|
- *
|
|
|
+ *
|
|
|
* @author ruoyi
|
|
|
* @date 2024-08-12
|
|
|
*/
|
|
|
-public class CaEmissionForecast extends BaseEntity
|
|
|
-{
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
+@Data
|
|
|
+
|
|
|
+public class CaEmissionForecast extends BaseEntity {
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
- /** 序号 */
|
|
|
+ /**
|
|
|
+ * 序号
|
|
|
+ */
|
|
|
private Long id;
|
|
|
|
|
|
- /** 园区代码 */
|
|
|
+ /**
|
|
|
+ * 园区代码
|
|
|
+ */
|
|
|
@Excel(name = "园区代码")
|
|
|
private String areaCode;
|
|
|
|
|
|
- /** 日期 */
|
|
|
+ private String areaName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 日期
|
|
|
+ */
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
@Excel(name = "日期", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
private Date date;
|
|
|
|
|
|
- /** (千克) */
|
|
|
+ /**
|
|
|
+ * (千克)
|
|
|
+ */
|
|
|
@Excel(name = "", readConverterExp = "千=克")
|
|
|
private Double caEmission;
|
|
|
|
|
|
- public void setId(Long id)
|
|
|
- {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getId()
|
|
|
- {
|
|
|
- return id;
|
|
|
- }
|
|
|
- public void setAreaCode(String areaCode)
|
|
|
- {
|
|
|
- this.areaCode = areaCode;
|
|
|
- }
|
|
|
-
|
|
|
- public String getAreaCode()
|
|
|
- {
|
|
|
- return areaCode;
|
|
|
- }
|
|
|
- public void setDate(Date date)
|
|
|
- {
|
|
|
- this.date = date;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getDate()
|
|
|
- {
|
|
|
- return date;
|
|
|
- }
|
|
|
- public void setCaEmission(Double caEmission)
|
|
|
- {
|
|
|
- this.caEmission = caEmission;
|
|
|
- }
|
|
|
-
|
|
|
- public Double getCaEmission()
|
|
|
- {
|
|
|
- return caEmission;
|
|
|
- }
|
|
|
-
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("id", getId())
|
|
|
- .append("areaCode", getAreaCode())
|
|
|
- .append("date", getDate())
|
|
|
- .append("caEmission", getCaEmission())
|
|
|
- .toString();
|
|
|
+ return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
|
+ .append("id", getId())
|
|
|
+ .append("areaCode", getAreaCode())
|
|
|
+ .append("date", getDate())
|
|
|
+ .append("caEmission", getCaEmission())
|
|
|
+ .toString();
|
|
|
}
|
|
|
}
|