代码调整
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user