校正因子添加能量字段

This commit is contained in:
duwenyuan 2026-01-24 17:34:24 +08:00
parent 9a2cabb0c1
commit b75a05ae14

View File

@ -53,24 +53,32 @@ public class GardsCorrectionFactor implements Serializable {
@TableField(value = "TOTAL_EFFICIENCY") @TableField(value = "TOTAL_EFFICIENCY")
private Double totalEfficiency; 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") @TableField(value = "CORRECTION_FACTOR")
private Double correctionFactor; private Double correctionFactor;
/** /**
* 制造商 * 制造商
*/ */
@Excel(name = "制造商", width = 20, height = 20, orderNum = "5") @Excel(name = "制造商", width = 20, height = 20, orderNum = "6")
@TableField(value = "MANUFACTURER") @TableField(value = "MANUFACTURER")
private String manufacturer; private String manufacturer;
/** /**
* 型号 * 型号
*/ */
@Excel(name = "型号", width = 20, height = 20, orderNum = "6") @Excel(name = "型号", width = 20, height = 20, orderNum = "7")
@TableField(value = "MODEL") @TableField(value = "MODEL")
private String model; private String model;