From b40024b18ace16f5dd5897d074181dcdb0d588bc Mon Sep 17 00:00:00 2001
From: zss <zss@example.com>
Date: 星期六, 10 八月 2024 15:54:17 +0800
Subject: [PATCH] 电力的热循环+温升试验报告生成
---
performance-server/src/main/java/com/yuanchu/mom/dto/AuxiliaryOriginalHoursDto.java | 109 +++++++++++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 106 insertions(+), 3 deletions(-)
diff --git a/performance-server/src/main/java/com/yuanchu/mom/dto/AuxiliaryOriginalHoursDto.java b/performance-server/src/main/java/com/yuanchu/mom/dto/AuxiliaryOriginalHoursDto.java
index de60608..a555a1e 100644
--- a/performance-server/src/main/java/com/yuanchu/mom/dto/AuxiliaryOriginalHoursDto.java
+++ b/performance-server/src/main/java/com/yuanchu/mom/dto/AuxiliaryOriginalHoursDto.java
@@ -1,19 +1,23 @@
package com.yuanchu.mom.dto;
+import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelProperty;
import com.yuanchu.mom.annotation.ValueTableShow;
+import com.yuanchu.mom.pojo.AuxiliaryCorrectionHours;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
-
-import java.time.LocalDateTime;
@Data
//鍘熷宸ユ椂
public class AuxiliaryOriginalHoursDto {
+
@ApiModelProperty("濮撳悕")
@ValueTableShow(2)
@ExcelProperty(value = "濮撳悕")
private String name;
+
+ //淇宸ユ椂
+ private AuxiliaryCorrectionHours auxiliaryCorrectionHours;
@ApiModelProperty("绫诲瀷")
@ValueTableShow(3)
@@ -25,158 +29,257 @@
@ExcelProperty(value = "1鏃�")
private Double oneHours;
+ @ExcelIgnore
+ private Integer one;
+
@ApiModelProperty("2鏃ュ伐鏃�")
@ValueTableShow(5)
@ExcelProperty(value = "2鏃�")
private Double twoHours;
+
+ @ExcelIgnore
+ private Integer two;
@ApiModelProperty("3鏃ュ伐鏃�")
@ValueTableShow(6)
@ExcelProperty(value = "3鏃�")
private Double threeHours;
+ @ExcelIgnore
+ private Integer three;
+
@ApiModelProperty("4鏃ュ伐鏃�")
@ValueTableShow(7)
@ExcelProperty(value = "4鏃�")
private Double fourHours;
+
+ @ExcelIgnore
+ private Integer four;
@ApiModelProperty("5鏃ュ伐鏃�")
@ValueTableShow(8)
@ExcelProperty(value = "5鏃�")
private Double fiveHours;
+ @ExcelIgnore
+ private Integer five;
+
@ApiModelProperty("6鏃ュ伐鏃�")
@ValueTableShow(9)
@ExcelProperty(value = "6鏃�")
private Double sixHours;
+
+ @ExcelIgnore
+ private Integer six;
@ApiModelProperty("7鏃ュ伐鏃�")
@ValueTableShow(10)
@ExcelProperty(value = "7鏃�")
private Double sevenHours;
+ @ExcelIgnore
+ private Integer seven;
+
@ApiModelProperty("8鏃ュ伐鏃�")
@ValueTableShow(11)
@ExcelProperty(value = "8鏃�")
private Double eightHours;
+
+ @ExcelIgnore
+ private Integer eight;
@ApiModelProperty("9鏃ュ伐鏃�")
@ValueTableShow(12)
@ExcelProperty(value = "9鏃�")
private Double nineHours;
+ @ExcelIgnore
+ private Integer nine;
+
@ApiModelProperty("10鏃ュ伐鏃�")
@ValueTableShow(13)
@ExcelProperty(value = "10鏃�")
private Double tenHours;
+
+ @ExcelIgnore
+ private Integer ten;
@ApiModelProperty("11鏃ュ伐鏃�")
@ValueTableShow(14)
@ExcelProperty(value = "11鏃�")
private Double elevenHours;
+ @ExcelIgnore
+ private Integer eleven;
+
@ApiModelProperty("12鏃ュ伐鏃�")
@ValueTableShow(15)
@ExcelProperty(value = "12鏃�")
private Double twelveHours;
+
+ @ExcelIgnore
+ private Integer twelve;
@ApiModelProperty("13鏃ュ伐鏃�")
@ValueTableShow(16)
@ExcelProperty(value = "13鏃�")
private Double thirteenHours;
+ @ExcelIgnore
+ private Integer thirteen;
+
@ApiModelProperty("14鏃ュ伐鏃�")
@ValueTableShow(17)
@ExcelProperty(value = "14鏃�")
private Double fourteenHours;
+
+ @ExcelIgnore
+ private Integer fourteen;
@ApiModelProperty("15鏃ュ伐鏃�")
@ValueTableShow(18)
@ExcelProperty(value = "15鏃�")
private Double fifteenHours;
+ @ExcelIgnore
+ private Integer fifteen;
+
@ApiModelProperty("16鏃ュ伐鏃�")
@ValueTableShow(19)
@ExcelProperty(value = "16鏃�")
private Double sixteenHours;
+
+ @ExcelIgnore
+ private Integer sixteen;
@ApiModelProperty("17鏃ュ伐鏃�")
@ValueTableShow(20)
@ExcelProperty(value = "17鏃�")
private Double seventeenHours;
+ @ExcelIgnore
+ private Integer seventeen;
+
@ApiModelProperty("18鏃ュ伐鏃�")
@ValueTableShow(21)
@ExcelProperty(value = "18鏃�")
private Double eighteenHours;
+
+ @ExcelIgnore
+ private Integer eighteen;
@ApiModelProperty("19鏃ュ伐鏃�")
@ValueTableShow(22)
@ExcelProperty(value = "19鏃�")
private Double nineteenHours;
+ @ExcelIgnore
+ private Integer nineteen;
+
@ApiModelProperty("20鏃ュ伐鏃�")
@ValueTableShow(23)
@ExcelProperty(value = "20鏃�")
private Double twentyHours;
+
+ @ExcelIgnore
+ private Integer twenty;
@ApiModelProperty("21鏃ュ伐鏃�")
@ValueTableShow(24)
@ExcelProperty(value = "21鏃�")
private Double twentyOneHours;
+ @ExcelIgnore
+ private Integer twentyOne;
+
@ApiModelProperty("22鏃ュ伐鏃�")
@ValueTableShow(25)
@ExcelProperty(value = "22鏃�")
private Double twentyTwoHours;
+
+ @ExcelIgnore
+ private Integer twentyTwo;
@ApiModelProperty("23鏃ュ伐鏃�")
@ValueTableShow(26)
@ExcelProperty(value = "23鏃�")
private Double twentyThreeHours;
+ @ExcelIgnore
+ private Integer twentyThree;
+
@ApiModelProperty("24鏃ュ伐鏃�")
@ValueTableShow(27)
@ExcelProperty(value = "24鏃�")
private Double twentyFourHours;
+
+ @ExcelIgnore
+ private Integer twentyFour;
@ApiModelProperty("25鏃ュ伐鏃�")
@ValueTableShow(28)
@ExcelProperty(value = "25鏃�")
private Double twentyFiveHours;
+ @ExcelIgnore
+ private Integer twentyFive;
+
@ApiModelProperty("26鏃ュ伐鏃�")
@ValueTableShow(29)
@ExcelProperty(value = "26鏃�")
private Double twentySixHours;
+
+ @ExcelIgnore
+ private Integer twentySix;
@ApiModelProperty("27鏃ュ伐鏃�")
@ValueTableShow(30)
@ExcelProperty(value = "27鏃�")
private Double twentySevenHours;
+ @ExcelIgnore
+ private Integer twentySeven;
+
@ApiModelProperty("28鏃ュ伐鏃�")
@ValueTableShow(31)
@ExcelProperty(value = "28鏃�")
private Double twentyEightHours;
+
+ @ExcelIgnore
+ private Integer twentyEight;
@ApiModelProperty("29鏃ュ伐鏃�")
@ValueTableShow(32)
@ExcelProperty(value = "29鏃�")
private Double twentyNineHours;
+ @ExcelIgnore
+ private Integer twentyNine;
+
@ApiModelProperty("30鏃ュ伐鏃�")
@ValueTableShow(33)
@ExcelProperty(value = "30鏃�")
private Double thirtyHours;
+
+ @ExcelIgnore
+ private Integer thirty;
@ApiModelProperty("31鏃ュ伐鏃�")
@ValueTableShow(34)
@ExcelProperty(value = "31鏃�")
private Double thirtyOneHours;
+ @ExcelIgnore
+ private Integer thirtyOne;
+
+ @ApiModelProperty("鎬诲伐鏃�")
+ @ValueTableShow(34)
+ @ExcelProperty(value = "鎬诲伐鏃�")
+ private Double total;
+
@ApiModelProperty("鏈堜唤")
@ValueTableShow(35)
@ExcelProperty(value = "鏈堜唤")
- private LocalDateTime month;
+ private String month;
+
}
--
Gitblit v1.9.3