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;