change - 峰平谷耗量报表
parent
d7ddafc370
commit
20ff254a9d
@ -0,0 +1,113 @@
|
|||||||
|
package com.os.ems.report.domain;
|
||||||
|
|
||||||
|
|
||||||
|
import com.os.common.annotation.Excel;
|
||||||
|
import com.os.common.core.domain.BaseEntity;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 峰平谷耗量报表
|
||||||
|
*
|
||||||
|
* @author Yinq
|
||||||
|
* @date 2023-10-12
|
||||||
|
*/
|
||||||
|
public class PeaksValleysConsumptionReport extends BaseEntity {
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 统计单元编号
|
||||||
|
*/
|
||||||
|
@Excel(name = "统计单元编号")
|
||||||
|
private String workUnitCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 统计单元名称
|
||||||
|
*/
|
||||||
|
@Excel(name = "统计单元名称")
|
||||||
|
private String workUnitName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 统计日期
|
||||||
|
*/
|
||||||
|
@Excel(name = "统计日期")
|
||||||
|
private String pointTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分时类型
|
||||||
|
*/
|
||||||
|
@Excel(name = "分时类型")
|
||||||
|
private String priceType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 耗量(kwh)
|
||||||
|
*/
|
||||||
|
@Excel(name = "耗量(kwh)")
|
||||||
|
private BigDecimal expend;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 价格
|
||||||
|
*/
|
||||||
|
@Excel(name = "价格")
|
||||||
|
private BigDecimal price;
|
||||||
|
|
||||||
|
public String getWorkUnitCode() {
|
||||||
|
return workUnitCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWorkUnitCode(String workUnitCode) {
|
||||||
|
this.workUnitCode = workUnitCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getWorkUnitName() {
|
||||||
|
return workUnitName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWorkUnitName(String workUnitName) {
|
||||||
|
this.workUnitName = workUnitName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPointTime() {
|
||||||
|
return pointTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPointTime(String pointTime) {
|
||||||
|
this.pointTime = pointTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPriceType() {
|
||||||
|
return priceType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPriceType(String priceType) {
|
||||||
|
this.priceType = priceType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public BigDecimal getExpend() {
|
||||||
|
return expend;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setExpend(BigDecimal expend) {
|
||||||
|
this.expend = expend;
|
||||||
|
}
|
||||||
|
|
||||||
|
public BigDecimal getPrice() {
|
||||||
|
return price;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPrice(BigDecimal price) {
|
||||||
|
this.price = price;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "PeaksValleysConsumptionReport{" +
|
||||||
|
"workUnitCode='" + workUnitCode + '\'' +
|
||||||
|
", workUnitName='" + workUnitName + '\'' +
|
||||||
|
", pointTime='" + pointTime + '\'' +
|
||||||
|
", priceType='" + priceType + '\'' +
|
||||||
|
", expend=" + expend +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue