From 5ecb1f53591ec51fd6ce549ccf107f59ecabedfc Mon Sep 17 00:00:00 2001
From: kongdeqiang <123456>
Date: 星期一, 01 十二月 2025 17:34:06 +0800
Subject: [PATCH] ospf监控设备
---
src/main/java/com/wgcloud/entity/OspfMonitor.java | 84 ++++++++++++++++++++++++++++++++++++++++++
1 files changed, 84 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/wgcloud/entity/OspfMonitor.java b/src/main/java/com/wgcloud/entity/OspfMonitor.java
new file mode 100644
index 0000000..f8cf9a8
--- /dev/null
+++ b/src/main/java/com/wgcloud/entity/OspfMonitor.java
@@ -0,0 +1,84 @@
+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 OspfMonitor extends BaseEntity {
+
+ /**
+ *
+ */
+ private static final long serialVersionUID = 1L;
+
+ /**
+ * 鏍囬
+ */
+ private String hostname;
+
+ /**
+ * 鎻忚堪
+ */
+ private String infoContent;
+
+ /**
+ * 1涓氬姟鍛婅锛�2绯荤粺鎿嶄綔
+ */
+ 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