代码调整

This commit is contained in:
2025-01-03 13:21:45 +08:00
parent 5c8a4fbfb8
commit 82acf16593
10 changed files with 217 additions and 52 deletions

View File

@@ -0,0 +1,39 @@
package com.njcn.gather.system.pojo.enums;
import lombok.Getter;
/**
* @author cdf
* @version 1.0.0
*/
@Getter
public enum DicDataEnum {
FREQ("FREQ","频率"),
V("V","电压"),
HV("HV","谐波电压"),
HI("HI","谐波电流"),
HP("HP","谐波有功功率"),
HSV("HSV","间谐波电压"),
HSI("V","间谐波电流"),
VOLTAGE("VOLTAGE","暂态"),
I("I","电流"),
IMBV("IMBV","三相电压不平衡度"),
IMBA("IMBA","三相电流不平衡度"),
F("F","闪变"),
;
private final String code;
private final String message;
DicDataEnum(String code, String message) {
this.code = code;
this.message = message;
}
}