Commit 310e12e9 authored by caotao's avatar caotao

电站日月年报表导出无单位

parent 43316b40
...@@ -33,24 +33,24 @@ public class DayGenerateEX { ...@@ -33,24 +33,24 @@ public class DayGenerateEX {
* 满发小时数 * 满发小时数
* *
* */ * */
@ExcelProperty(value = "满发小时数", index = 5) @ExcelProperty(value = "满发小时数(h)", index = 5)
private Double fullhour; private Double fullhour;
@ExcelProperty(value = "日发电量", index = 6) @ExcelProperty(value = "日发电量(kWh)", index = 6)
// 日发电量 // 日发电量
private Double dayGenerate; private Double dayGenerate;
@ExcelProperty(value = "日收益", index = 7) @ExcelProperty(value = "日收益(元)", index = 7)
// 日收益 // 日收益
private Double dayIncome; private Double dayIncome;
/** /**
* 累计发电量 * 累计发电量
*/ */
@ExcelProperty(value = "累计发电量", index = 8) @ExcelProperty(value = "累计发电量(kWh)", index = 8)
private Double accumulatedPower; private Double accumulatedPower;
/** /**
* 状态 * 状态
......
...@@ -96,7 +96,7 @@ public class JpStationDto extends BaseDto { ...@@ -96,7 +96,7 @@ public class JpStationDto extends BaseDto {
/** /**
* 累计发电量 * 累计发电量
*/ */
@ExcelProperty(value = "累计发电量", index = 6) @ExcelProperty(value = "累计发电量(mWh)", index = 6)
private Double accumulatedPower; private Double accumulatedPower;
@ExcelIgnore @ExcelIgnore
/** /**
...@@ -136,7 +136,7 @@ public class JpStationDto extends BaseDto { ...@@ -136,7 +136,7 @@ public class JpStationDto extends BaseDto {
private String area; private String area;
@ExcelIgnore @ExcelIgnore
List<JpPersonStation> statioId; List<JpPersonStation> statioId;
@ExcelProperty(value = "累计收益", index = 7) @ExcelProperty(value = "累计收益(元)", index = 7)
// 累计收益 // 累计收益
private Double cumulativeIncome; private Double cumulativeIncome;
@ExcelIgnore @ExcelIgnore
...@@ -177,7 +177,7 @@ public class JpStationDto extends BaseDto { ...@@ -177,7 +177,7 @@ public class JpStationDto extends BaseDto {
* 满发小时数 * 满发小时数
* *
* */ * */
@ExcelProperty(value = "满发小时数", index = 5) @ExcelProperty(value = "满发小时数(h)", index = 5)
private Double fullhour; private Double fullhour;
......
...@@ -35,7 +35,7 @@ public class MonthGenerateEX { ...@@ -35,7 +35,7 @@ public class MonthGenerateEX {
* 满发小时数 * 满发小时数
* *
* */ * */
@ExcelProperty(value = "满发小时数", index = 5) @ExcelProperty(value = "满发小时数(h)", index = 5)
private Double fullhour; private Double fullhour;
...@@ -43,15 +43,15 @@ public class MonthGenerateEX { ...@@ -43,15 +43,15 @@ public class MonthGenerateEX {
// 月发电量 // 月发电量
@ExcelProperty(value = "月发电量", index = 6) @ExcelProperty(value = "月发电量(kWh)", index = 6)
private Double monthGenerate; private Double monthGenerate;
// 月收益 // 月收益
@ExcelProperty(value = "月收益", index = 7) @ExcelProperty(value = "月收益(元)", index = 7)
private Double monthIncome; private Double monthIncome;
/** /**
* 累计发电量 * 累计发电量
*/ */
@ExcelProperty(value = "累计发电量", index = 8) @ExcelProperty(value = "累计发电量(kWh)", index = 8)
private Double accumulatedPower; private Double accumulatedPower;
} }
...@@ -30,22 +30,22 @@ public class YearGenerateEX { ...@@ -30,22 +30,22 @@ public class YearGenerateEX {
* 满发小时数 * 满发小时数
* *
* */ * */
@ExcelProperty(value = "满发小时数", index = 5) @ExcelProperty(value = "满发小时数(h)", index = 5)
private Double fullhour; private Double fullhour;
// 年发电量 // 年发电量
@ExcelProperty(value = "年发电量", index = 6) @ExcelProperty(value = "年发电量(kWh)", index = 6)
private Double yearGenerate; private Double yearGenerate;
// 年收益 // 年收益
@ExcelProperty(value = "年收益", index = 7) @ExcelProperty(value = "年收益(元)", index = 7)
private Double yearIncome; private Double yearIncome;
/** /**
* 累计发电量 * 累计发电量
*/ */
@ExcelProperty(value = "累计发电量", index = 8) @ExcelProperty(value = "累计发电量(kWh)", index = 8)
private Double accumulatedPower; private Double accumulatedPower;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment