From 5d36e1f987ef21e44ded2e8a1d06c28094ec1e76 Mon Sep 17 00:00:00 2001 From: baoshiwei <baoshiwei@shlanbao.cn> Date: 星期六, 19 四月 2025 12:39:47 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- zhitan-system/src/main/java/com/zhitan/processenergy/domain/YearProcessEnergy.java | 237 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 237 insertions(+), 0 deletions(-) diff --git a/zhitan-system/src/main/java/com/zhitan/processenergy/domain/YearProcessEnergy.java b/zhitan-system/src/main/java/com/zhitan/processenergy/domain/YearProcessEnergy.java new file mode 100644 index 0000000..e48f5ac --- /dev/null +++ b/zhitan-system/src/main/java/com/zhitan/processenergy/domain/YearProcessEnergy.java @@ -0,0 +1,237 @@ +package com.zhitan.processenergy.domain; + +import com.zhitan.common.annotation.Excel; + +import java.io.Serializable; +import java.util.ArrayList; +import java.util.Date; +import java.util.List; +import java.util.Map; + +/** + *宸ュ簭鑳借�� 鏈� + * + * @author sys + * @date 2021-01-11 + */ +public class YearProcessEnergy implements Serializable { + private static final long serialVersionUID = 1L; + private String indexId; + @Excel(name = "鎸囨爣鍚嶇О") + private String indexName; + private String value; + private Date dataTime; + private String timeType; + private String timeCode; + @Excel(name = "1鏈�") + private Double value1; + @Excel(name = "2鏈�") + private Double value2; + @Excel(name = "3鏈�") + private Double value3; + @Excel(name = "4鏈�") + private Double value4; + @Excel(name = "5鏈�") + private Double value5; + @Excel(name = "6鏈�") + private Double value6; + @Excel(name = "7鏈�") + private Double value7; + @Excel(name = "8鏈�") + private Double value8; + @Excel(name = "9鏈�") + private Double value9; + @Excel(name = "10鏈�") + private Double value10; + @Excel(name = "11鏈�") + private Double value11; + @Excel(name = "12鏈�") + private Double value12; + private Integer count; + private String unitId; + /** 鎬昏褰曟暟 */ + private long total; + private List<Map> tablehead =new ArrayList<>(); + private List<YearProcessEnergy> tabledata =new ArrayList<YearProcessEnergy>(); + public String getIndexId() { + return indexId; + } + + public void setIndexId(String indexId) { + this.indexId = indexId; + } + + public String getIndexName() { + return indexName; + } + + public void setIndexName(String indexName) { + this.indexName = indexName; + } + public String getUnitId() { + return unitId; + } + + public void setUnitId(String unitId) { + this.unitId = unitId; + } + + public String getTimeCode() { + return timeCode; + } + + public void setTimeCode(String timeCode) { + this.timeCode = timeCode; + } + + public String getValue() { + return value; + } + + public void setValue(String value) { + this.value = value; + } + + public String getTimeType() { + return timeType; + } + + public void setTimeType(String timeType) { + this.timeType = timeType; + } + + public Date getDataTime() { + return dataTime; + } + + public void setDataTime(Date dataTime) { + this.dataTime = dataTime; + } + + public Double getValue1() { + return value1; + } + + public void setValue1(Double value1) { + this.value1 = value1; + } + + public Double getValue2() { + return value2; + } + + public void setValue2(Double value2) { + this.value2 = value2; + } + + public Double getValue3() { + return value3; + } + + public void setValue3(Double value3) { + this.value3 = value3; + } + + public Double getValue4() { + return value4; + } + + public void setValue4(Double value4) { + this.value4 = value4; + } + + public Double getValue5() { + return value5; + } + + public void setValue5(Double value5) { + this.value5 = value5; + } + + public Double getValue6() { + return value6; + } + + public void setValue6(Double value6) { + this.value6 = value6; + } + + public Double getValue7() { + return value7; + } + + public void setValue7(Double value7) { + this.value7 = value7; + } + + public Double getValue8() { + return value8; + } + + public void setValue8(Double value8) { + this.value8 = value8; + } + + public Double getValue9() { + return value9; + } + + public void setValue9(Double value9) { + this.value9 = value9; + } + + public Double getValue10() { + return value10; + } + + public void setValue10(Double value10) { + this.value10 = value10; + } + + public Double getValue11() { + return value11; + } + + public void setValue11(Double value11) { + this.value11 = value11; + } + + public Double getValue12() { + return value12; + } + + public void setValue12(Double value12) { + this.value12 = value12; + } + + public List<Map> getTablehead() { + return tablehead; + } + + public void setTablehead(List<Map> tablehead) { + this.tablehead = tablehead; + } + public List<YearProcessEnergy> getTabledata() { + return tabledata; + } + + public void setTabledata(List<YearProcessEnergy> tabledata) { + this.tabledata = tabledata; + } + + public Integer getCount() { + return count; + } + + public void setCount(Integer count) { + this.count = count; + } + + public long getTotal() { + return total; + } + + public void setTotal(long total) { + this.total = total; + } +} -- Gitblit v1.9.3