报告模板配置

This commit is contained in:
hanyong
2022-11-18 09:41:12 +08:00
parent 7633ab70d1
commit 10722d3991
2 changed files with 18 additions and 4 deletions

View File

@@ -96,8 +96,22 @@ public enum DicDataEnum {
ONLINE("在线监测告警","Online"),
DEV_EXCEPTION("设备异常","Dev_Exception"),
GENERAL("普测超标","General"),
USER_COMPLAINTS("用户投诉","User_Complaints");
USER_COMPLAINTS("用户投诉","User_Complaints"),
/**
* 台区电能质量事件类型
*/
EVENT_TYPE_P("低功率因数0.7-0.8","Event_Type_p"),
EVENT_TYPE_U("潮流倒送","Event_Type_u"),
EVENT_TYPE_T("电压越上限15%以上","Event_Type_t"),
EVENT_TYPE_W("电压越限","Event_Type_w"),
EVENT_TYPE_O("低功率因数0.7以下","Event_Type_o"),
EVENT_TYPE_E("电压越上限","Event_Type_e"),
EVENT_TYPE_Y("电压越下限","Event_Type_y"),
EVENT_TYPE_L("低功率因数0.8-0.9","Event_Type_l"),
EVENT_TYPE_Q("电压总谐波畸变率超标","Event_Type_q"),
EVENT_TYPE_R("电压越上限7%-15%","Event_Type_r"),
EVENT_TYPE_I("低功率因数","Event_Type_i");
private final String name;

View File

@@ -45,11 +45,11 @@ public enum DicDataTypeEnum {
LINE_SORT("监测点类别","Line_Sort"),
DATA_TYPE("数据类型","Data_Type"),
PERMEABILITY_TYPE("分布式光伏台区渗透率水平","Permeability_Type"),
ON_NETWORK_STATUS("入网报告状态","On-network_Status"),
ON_NETWORK_STATUS("报告状态","On-network_Status"),
AUDIT_STATUS("审核状态","Audit_Status"),
FILL_PROGRESS("填报进度","Fill_Progress"),
PROBLEM_SOURCES("问题来源","Problem_Sources");
PROBLEM_SOURCES("问题来源","Problem_Sources"),
AREA_PQ_EVENT_TYPE("台区电能质量事件类型","area_pq_event_type");
private final String name;