From af9026b8990c424e22987e54558170a7ecc43902 Mon Sep 17 00:00:00 2001 From: wr <1754607820@qq.com> Date: Tue, 17 Dec 2024 20:23:14 +0800 Subject: [PATCH] =?UTF-8?q?1.=E6=9E=9A=E4=B8=BE=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pojo/enums/SourceOperateCodeEnum.java | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/detection/src/main/java/com/njcn/gather/detection/pojo/enums/SourceOperateCodeEnum.java b/detection/src/main/java/com/njcn/gather/detection/pojo/enums/SourceOperateCodeEnum.java index 5ff1c0b3..b96b38bf 100644 --- a/detection/src/main/java/com/njcn/gather/detection/pojo/enums/SourceOperateCodeEnum.java +++ b/detection/src/main/java/com/njcn/gather/detection/pojo/enums/SourceOperateCodeEnum.java @@ -17,11 +17,23 @@ public enum SourceOperateCodeEnum { OPER_GATHER("OPER_GATHER", "源输出"), CLOSE_GATHER("CLOSE_GATHER", "源停止"), - YJC_YTXJY("yjc_ytxjy", "预检测_源通讯检测"); + /** + * 终端 INIT_GATHER$01 INIT_GATHER采集初始化,01 统计采集、02 暂态采集、03 实时采集 + */ + DEV_INIT_GATHER_01("INIT_GATHER$01", "统计采集"), + DEV_INIT_GATHER_02("INIT_GATHER$02", "暂态采集"), + DEV_INIT_GATHER_03("INIT_GATHER$03", "实时采集"), + YJC_YTXJY("yjc_ytxjy", "预检测_源通讯检测"), + YJC_SBTXJY("yjc_sbtxjy", "预检测_设备通讯检测"), + YJC_XYJY("yjc_xyjy", "预检测_协议校验"), + YJC_XUJY("YJC_xujy", "预检测_相序校验"), + + ; + private String value; private String msg;