|
@@ -1,6 +1,9 @@
|
|
|
package com.ruoyi.powerdistribution.domain;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
+
|
|
|
+import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
|
|
+import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
@@ -12,6 +15,7 @@ import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
* @author ruoyi
|
|
|
* @date 2024-12-09
|
|
|
*/
|
|
|
+@ExcelIgnoreUnannotated
|
|
|
public class PdmStopTarge extends BaseEntity
|
|
|
{
|
|
|
private static final long serialVersionUID = 1L;
|
|
@@ -28,182 +32,227 @@ public class PdmStopTarge extends BaseEntity
|
|
|
private String companyNo;
|
|
|
|
|
|
/** 单位名称 */
|
|
|
- @Excel(name = "单位名称")
|
|
|
+ @ExcelProperty(index = 0)
|
|
|
+ @Excel(name = "单位")
|
|
|
private String companyName;
|
|
|
|
|
|
/** 平均停电时长目标 */
|
|
|
- @Excel(name = "平均停电时长目标")
|
|
|
+ @ExcelProperty(index = 1)
|
|
|
+ @Excel(name = "中压用户平均停电时长目标(小时)")
|
|
|
private BigDecimal stopTimeAvg;
|
|
|
|
|
|
/** 等效总用户数 */
|
|
|
+ @ExcelProperty(index = 2)
|
|
|
@Excel(name = "等效总用户数")
|
|
|
private BigDecimal userTotal;
|
|
|
|
|
|
/** 停电总时长目标 */
|
|
|
+ @ExcelProperty(index = 3)
|
|
|
@Excel(name = "停电总时长目标")
|
|
|
private BigDecimal stopTimeTotal;
|
|
|
|
|
|
/** 3年占比 */
|
|
|
+ @ExcelProperty(index = 4)
|
|
|
@Excel(name = "3年占比")
|
|
|
private String threeYearRatio;
|
|
|
|
|
|
/** 预安排停电总时长目标 */
|
|
|
+ @ExcelProperty(index = 5)
|
|
|
@Excel(name = "预安排停电总时长目标")
|
|
|
private BigDecimal planStopTimeTotal;
|
|
|
|
|
|
/** 预安排平均停电时长目标 */
|
|
|
+ @ExcelProperty(index = 6)
|
|
|
@Excel(name = "预安排平均停电时长目标")
|
|
|
private BigDecimal planStopTimeAvg;
|
|
|
|
|
|
/** 故障停电总时长目标 */
|
|
|
+ @ExcelProperty(index = 7)
|
|
|
@Excel(name = "故障停电总时长目标")
|
|
|
private BigDecimal errorStopTimeTotal;
|
|
|
|
|
|
/** 故障平均停电时长目标 */
|
|
|
+ @ExcelProperty(index = 8)
|
|
|
@Excel(name = "故障平均停电时长目标")
|
|
|
private BigDecimal errorStopTimeAvg;
|
|
|
|
|
|
/** 停电月度时长-1月 */
|
|
|
+ @ExcelProperty(index = 9)
|
|
|
@Excel(name = "停电月度时长-1月")
|
|
|
private BigDecimal stopTimeMonth01;
|
|
|
|
|
|
/** 停电月度时长-2月 */
|
|
|
+ @ExcelProperty(index = 10)
|
|
|
@Excel(name = "停电月度时长-2月")
|
|
|
private BigDecimal stopTimeMonth02;
|
|
|
|
|
|
/** 停电月度时长-3月 */
|
|
|
+ @ExcelProperty(index = 11)
|
|
|
@Excel(name = "停电月度时长-3月")
|
|
|
private BigDecimal stopTimeMonth03;
|
|
|
|
|
|
/** 停电月度时长-4月 */
|
|
|
+ @ExcelProperty(index = 12)
|
|
|
@Excel(name = "停电月度时长-4月")
|
|
|
private BigDecimal stopTimeMonth04;
|
|
|
|
|
|
/** 停电月度时长-5月 */
|
|
|
+ @ExcelProperty(index = 13)
|
|
|
@Excel(name = "停电月度时长-5月")
|
|
|
private BigDecimal stopTimeMonth05;
|
|
|
|
|
|
/** 停电月度时长-6月 */
|
|
|
+ @ExcelProperty(index = 14)
|
|
|
@Excel(name = "停电月度时长-6月")
|
|
|
private BigDecimal stopTimeMonth06;
|
|
|
|
|
|
/** 停电月度时长-7月 */
|
|
|
+ @ExcelProperty(index = 15)
|
|
|
@Excel(name = "停电月度时长-7月")
|
|
|
private BigDecimal stopTimeMonth07;
|
|
|
|
|
|
/** 停电月度时长-8月 */
|
|
|
+ @ExcelProperty(index = 16)
|
|
|
@Excel(name = "停电月度时长-8月")
|
|
|
private BigDecimal stopTimeMonth08;
|
|
|
|
|
|
/** 停电月度时长-9月 */
|
|
|
+ @ExcelProperty(index = 17)
|
|
|
@Excel(name = "停电月度时长-9月")
|
|
|
private BigDecimal stopTimeMonth09;
|
|
|
|
|
|
/** 停电月度时长-10月 */
|
|
|
+ @ExcelProperty(index = 18)
|
|
|
@Excel(name = "停电月度时长-10月")
|
|
|
private BigDecimal stopTimeMonth10;
|
|
|
|
|
|
/** 停电月度时长-11月 */
|
|
|
+ @ExcelProperty(index = 19)
|
|
|
@Excel(name = "停电月度时长-11月")
|
|
|
private BigDecimal stopTimeMonth11;
|
|
|
|
|
|
/** 停电月度时长-12月 */
|
|
|
+ @ExcelProperty(index = 20)
|
|
|
@Excel(name = "停电月度时长-12月")
|
|
|
private BigDecimal stopTimeMonth12;
|
|
|
|
|
|
/** 预安排停电月度时长-1月 */
|
|
|
+ @ExcelProperty(index = 21)
|
|
|
@Excel(name = "预安排停电月度时长-1月")
|
|
|
private BigDecimal planStopTimeMonth01;
|
|
|
|
|
|
/** 预安排停电月度时长-2月 */
|
|
|
+ @ExcelProperty(index = 22)
|
|
|
@Excel(name = "预安排停电月度时长-2月")
|
|
|
private BigDecimal planStopTimeMonth02;
|
|
|
|
|
|
/** 预安排停电月度时长-3月 */
|
|
|
+ @ExcelProperty(index = 23)
|
|
|
@Excel(name = "预安排停电月度时长-3月")
|
|
|
private BigDecimal planStopTimeMonth03;
|
|
|
|
|
|
/** 预安排停电月度时长-4月 */
|
|
|
+ @ExcelProperty(index = 24)
|
|
|
@Excel(name = "预安排停电月度时长-4月")
|
|
|
private BigDecimal planStopTimeMonth04;
|
|
|
|
|
|
/** 预安排停电月度时长-5月 */
|
|
|
+ @ExcelProperty(index = 25)
|
|
|
@Excel(name = "预安排停电月度时长-5月")
|
|
|
private BigDecimal planStopTimeMonth05;
|
|
|
|
|
|
/** 预安排停电月度时长-6月 */
|
|
|
+ @ExcelProperty(index = 26)
|
|
|
@Excel(name = "预安排停电月度时长-6月")
|
|
|
private BigDecimal planStopTimeMonth06;
|
|
|
|
|
|
/** 预安排停电月度时长-7月 */
|
|
|
+ @ExcelProperty(index = 27)
|
|
|
@Excel(name = "预安排停电月度时长-7月")
|
|
|
private BigDecimal planStopTimeMonth07;
|
|
|
|
|
|
/** 预安排停电月度时长-8月 */
|
|
|
+ @ExcelProperty(index = 28)
|
|
|
@Excel(name = "预安排停电月度时长-8月")
|
|
|
private BigDecimal planStopTimeMonth08;
|
|
|
|
|
|
/** 预安排停电月度时长-9月 */
|
|
|
+ @ExcelProperty(index = 29)
|
|
|
@Excel(name = "预安排停电月度时长-9月")
|
|
|
private BigDecimal planStopTimeMonth09;
|
|
|
|
|
|
/** 预安排停电月度时长-10月 */
|
|
|
+ @ExcelProperty(index = 30)
|
|
|
@Excel(name = "预安排停电月度时长-10月")
|
|
|
private BigDecimal planStopTimeMonth10;
|
|
|
|
|
|
/** 预安排停电月度时长-11月 */
|
|
|
+ @ExcelProperty(index = 31)
|
|
|
@Excel(name = "预安排停电月度时长-11月")
|
|
|
private BigDecimal planStopTimeMonth11;
|
|
|
|
|
|
/** 预安排停电月度时长-12月 */
|
|
|
+ @ExcelProperty(index = 32)
|
|
|
@Excel(name = "预安排停电月度时长-12月")
|
|
|
private BigDecimal planStopTimeMonth12;
|
|
|
|
|
|
/** 故障停电月度时长-1月 */
|
|
|
+ @ExcelProperty(index = 33)
|
|
|
@Excel(name = "故障停电月度时长-1月")
|
|
|
private BigDecimal errorStopTimeMonth01;
|
|
|
|
|
|
/** 故障停电月度时长-2月 */
|
|
|
+ @ExcelProperty(index = 34)
|
|
|
@Excel(name = "故障停电月度时长-2月")
|
|
|
private BigDecimal errorStopTimeMonth02;
|
|
|
|
|
|
/** 故障停电月度时长-3月 */
|
|
|
+ @ExcelProperty(index = 35)
|
|
|
@Excel(name = "故障停电月度时长-3月")
|
|
|
private BigDecimal errorStopTimeMonth03;
|
|
|
|
|
|
/** 故障停电月度时长-4月 */
|
|
|
+ @ExcelProperty(index = 36)
|
|
|
@Excel(name = "故障停电月度时长-4月")
|
|
|
private BigDecimal errorStopTimeMonth04;
|
|
|
|
|
|
/** 故障停电月度时长-5月 */
|
|
|
+ @ExcelProperty(index = 37)
|
|
|
@Excel(name = "故障停电月度时长-5月")
|
|
|
private BigDecimal errorStopTimeMonth05;
|
|
|
|
|
|
/** 故障停电月度时长-6月 */
|
|
|
+ @ExcelProperty(index = 38)
|
|
|
@Excel(name = "故障停电月度时长-6月")
|
|
|
private BigDecimal errorStopTimeMonth06;
|
|
|
|
|
|
/** 故障停电月度时长-7月 */
|
|
|
+ @ExcelProperty(index = 39)
|
|
|
@Excel(name = "故障停电月度时长-7月")
|
|
|
private BigDecimal errorStopTimeMonth07;
|
|
|
|
|
|
/** 故障停电月度时长-8月 */
|
|
|
+ @ExcelProperty(index = 40)
|
|
|
@Excel(name = "故障停电月度时长-8月")
|
|
|
private BigDecimal errorStopTimeMonth08;
|
|
|
|
|
|
/** 故障停电月度时长-9月 */
|
|
|
+ @ExcelProperty(index = 41)
|
|
|
@Excel(name = "故障停电月度时长-9月")
|
|
|
private BigDecimal errorStopTimeMonth09;
|
|
|
|
|
|
/** 故障停电月度时长-10月 */
|
|
|
+ @ExcelProperty(index = 42)
|
|
|
@Excel(name = "故障停电月度时长-10月")
|
|
|
private BigDecimal errorStopTimeMonth10;
|
|
|
|
|
|
/** 故障停电月度时长-11月 */
|
|
|
+ @ExcelProperty(index = 43)
|
|
|
@Excel(name = "故障停电月度时长-11月")
|
|
|
private BigDecimal errorStopTimeMonth11;
|
|
|
|
|
|
/** 故障停电月度时长-12月 */
|
|
|
+ @ExcelProperty(index = 44)
|
|
|
@Excel(name = "故障停电月度时长-12月")
|
|
|
private BigDecimal errorStopTimeMonth12;
|
|
|
|