From 98d886ce316c0dd0623c76b3e157b186ebfeb7a5 Mon Sep 17 00:00:00 2001
From: kongdeqiang <kongdeqiang@960204@163.com>
Date: 星期一, 01 十二月 2025 22:17:16 +0800
Subject: [PATCH] fix:sql提交
---
src/main/java/com/wgcloud/entity/OspfMonitor.java | 102 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 102 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..2ef893d
--- /dev/null
+++ b/src/main/java/com/wgcloud/entity/OspfMonitor.java
@@ -0,0 +1,102 @@
+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;
+
+ private String username;
+
+ private String password;
+
+ public String getUsername() {
+ return username;
+ }
+
+ public void setUsername(String username) {
+ this.username = username;
+ }
+
+ public String getPassword() {
+ return password;
+ }
+
+ public void setPassword(String password) {
+ this.password = password;
+ }
+
+ 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