From 55f4c8cda0f426e3a8d31908018a6b9c890bc006 Mon Sep 17 00:00:00 2001
From: kongdeqiang <kongdeqiang@960204@163.com>
Date: 星期二, 02 十二月 2025 20:04:09 +0800
Subject: [PATCH] fix:完善逻辑

---
 src/main/java/com/wgcloud/entity/OspfErrorLog.java |   82 +++++++++++++++++++++++++++++++++++++++++
 1 files changed, 82 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/wgcloud/entity/OspfErrorLog.java b/src/main/java/com/wgcloud/entity/OspfErrorLog.java
new file mode 100644
index 0000000..0551c54
--- /dev/null
+++ b/src/main/java/com/wgcloud/entity/OspfErrorLog.java
@@ -0,0 +1,82 @@
+package com.wgcloud.entity;
+
+import java.util.Date;
+
+/**
+ * @version v3.3
+ * @ClassName:ospf.java
+ * @author: http://www.wgstart.com
+ * @date: 2021骞�1鏈�16鏃�
+ * @Description: ospf鐩戞帶璁惧
+ * @Copyright: 2019-2021 wgcloud. All rights reserved.
+ */
+public class OspfErrorLog extends BaseEntity {
+
+    /**
+     *
+     */
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * 鏍囬
+     */
+    private String hostname;
+
+    /**
+     * 鎻忚堪
+     */
+    private String infoContent;
+
+    /**
+     * 0宸插鐞嗭紝1鏈鐞�
+     */
+    private String state;
+
+    /**
+     * 鍒涘缓鏃堕棿
+     */
+    private Date createTime;
+
+    public String getHostname() {
+        return hostname;
+    }
+
+
+    public void setHostname(String hostname) {
+        this.hostname = hostname;
+    }
+
+
+    public String getInfoContent() {
+        return infoContent;
+    }
+
+
+    public void setInfoContent(String infoContent) {
+        this.infoContent = infoContent;
+    }
+
+
+    public String getState() {
+        return state;
+    }
+
+
+    public void setState(String state) {
+        this.state = state;
+    }
+
+
+    public Date getCreateTime() {
+        return createTime;
+    }
+
+
+    public void setCreateTime(Date createTime) {
+        this.createTime = createTime;
+    }
+
+
+
+
+}

--
Gitblit v1.9.1