From e56ecf1a502dfcac5bb6ef509a08164aee7c6154 Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期六, 07 十二月 2024 18:23:24 +0800
Subject: [PATCH] 新增白名单故障类型

---
 ycl-pojo/src/main/java/com/ycl/platform/domain/result/HK/HKTreeResult.java |   32 ++++++++++++++++++++++++++++++++
 1 files changed, 32 insertions(+), 0 deletions(-)

diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/result/HK/HKTreeResult.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/result/HK/HKTreeResult.java
new file mode 100644
index 0000000..63b4f98
--- /dev/null
+++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/result/HK/HKTreeResult.java
@@ -0,0 +1,32 @@
+package com.ycl.platform.domain.result.HK;
+
+import com.ycl.platform.domain.result.BaseResult;
+import lombok.Data;
+
+import java.util.Date;
+import java.util.List;
+
+//鑰冩牳涓氬姟鏍�
+@Data
+public class HKTreeResult extends BaseResult {
+    //涓氬姟鏍戠被鍨� face/car
+    private String type;
+
+    private List<Tree> treeList;
+
+    /**
+     * 鑰冩牳涓氬姟鏍�
+     */
+    @Data
+    public static class Tree {
+        //涓氬姟鏍戠紪鐮�
+        private String cTreeCode;
+        //涓氬姟鏍戝悕绉�
+        private String cTreeName;
+        private Integer cType;
+        private String open;
+        private String iSystem;
+        private Date dCreateTime;
+
+    }
+}

--
Gitblit v1.8.0