限值提交
This commit is contained in:
@@ -182,35 +182,36 @@ public enum DicDataEnum {
|
||||
* @date 2023/3/24
|
||||
*/
|
||||
|
||||
KV01("0.1kV", "0.1"),
|
||||
V022("0.22kV", "0.22"),
|
||||
KV038("0.38kV", "0.38"),
|
||||
V380("380V", "0.38"),
|
||||
KV04("0.4kV", "0.4"),
|
||||
KV06("0.6kV", "0.6"),
|
||||
V400("400V", "0.4"),
|
||||
KV6("6kV", "6"),
|
||||
KV10("10kV", "10"),
|
||||
KV20("20kV", "20"),
|
||||
KV30("30kV", "30"),
|
||||
KV35("35kV", "35"),
|
||||
KV50("50kV", "50"),
|
||||
KV66("66kV", "66"),
|
||||
KV72_5("72.5kV", "725"),
|
||||
KV110("110kV", "110"),
|
||||
KV120("120kV", "120"),
|
||||
KV125("125kV", "125"),
|
||||
KV200("200kV", "200"),
|
||||
KV220("220kV", "220"),
|
||||
KV320("320kV", "320"),
|
||||
KV330("330kV", "330"),
|
||||
KV400("400kV", "400"),
|
||||
KV500("500kV", "500"),
|
||||
KV600("600kV", "600"),
|
||||
KV660("660kV", "660"),
|
||||
KV750("750kV", "750"),
|
||||
KV1000("1000kV", "1000"),
|
||||
KV1100("1100kV", "1100"),
|
||||
V100("100V", "0.1",0.1f),
|
||||
V220("220V", "0.22",0.22f),
|
||||
KV038("0.38kV", "0.38",0.38f),
|
||||
V380("380V", "0.38",0.38f),
|
||||
KV04("0.4kV", "0.4",0.4f),
|
||||
KV06("0.6kV", "0.6",0.6f),
|
||||
V400("400V", "0.4",0.4f),
|
||||
KV1("1kV", "1",1.0f),
|
||||
KV6("6kV", "6",6.0f),
|
||||
KV10("10kV", "10",10.0f),
|
||||
KV20("20kV", "20",20.0f),
|
||||
KV30("30kV", "30",30.0f),
|
||||
KV35("35kV", "35",35.0f),
|
||||
KV50("50kV", "50",50.0f),
|
||||
KV66("66kV", "66",66.0f),
|
||||
KV72_5("72.5kV", "725",725.0f),
|
||||
KV110("110kV", "110",110.0f),
|
||||
KV120("120kV", "120",120.0f),
|
||||
KV125("125kV", "125",125.0f),
|
||||
KV200("200kV", "200",200.0f),
|
||||
KV220("220kV", "220",220.0f),
|
||||
KV320("320kV", "320",320.0f),
|
||||
KV330("330kV", "330",330.0f),
|
||||
KV400("400kV", "400",400.0f),
|
||||
KV500("500kV", "500",500.0f),
|
||||
KV600("600kV", "600",600.0f),
|
||||
KV660("660kV", "660",660.0f),
|
||||
KV750("750kV", "750",750.0f),
|
||||
KV1000("1000kV", "1000",1000.0f),
|
||||
KV1100("1100kV", "1100",1100.0f),
|
||||
|
||||
/**
|
||||
* 计划采取实施
|
||||
@@ -344,10 +345,18 @@ public enum DicDataEnum {
|
||||
|
||||
private final String name;
|
||||
private final String code;
|
||||
private final Float value;
|
||||
|
||||
DicDataEnum(String name, String code,Float value) {
|
||||
this.name = name;
|
||||
this.code = code;
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
DicDataEnum(String name, String code) {
|
||||
this.name = name;
|
||||
this.code = code;
|
||||
this.value = null;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user