From b75a05ae14e4b0fe4f0cd8396b6946e84407c222 Mon Sep 17 00:00:00 2001 From: duwenyuan <15600000461@163.com> Date: Sat, 24 Jan 2026 17:34:24 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=A1=E6=AD=A3=E5=9B=A0=E5=AD=90=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E8=83=BD=E9=87=8F=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../configuration/GardsCorrectionFactor.java | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsCorrectionFactor.java b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsCorrectionFactor.java index d90d967..4bbd2a6 100644 --- a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsCorrectionFactor.java +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsCorrectionFactor.java @@ -53,24 +53,32 @@ public class GardsCorrectionFactor implements Serializable { @TableField(value = "TOTAL_EFFICIENCY") private Double totalEfficiency; + /** + * 能量 + */ + @Excel(name = "能量", width = 20, height = 20, orderNum = "4") + @TableField(value = "ENERGY") + private Double energy; + + /** * 校正因子 */ - @Excel(name = "校正因子", width = 20, height = 20, orderNum = "4") + @Excel(name = "校正因子", width = 20, height = 20, orderNum = "5") @TableField(value = "CORRECTION_FACTOR") private Double correctionFactor; /** * 制造商 */ - @Excel(name = "制造商", width = 20, height = 20, orderNum = "5") + @Excel(name = "制造商", width = 20, height = 20, orderNum = "6") @TableField(value = "MANUFACTURER") private String manufacturer; /** * 型号 */ - @Excel(name = "型号", width = 20, height = 20, orderNum = "6") + @Excel(name = "型号", width = 20, height = 20, orderNum = "7") @TableField(value = "MODEL") private String model;