feature(web): 增加一个直接通过 zookeeper 查询运行时信息的页面

This commit is contained in:
2023-05-23 15:54:11 +08:00
parent 5e191a176d
commit f29cccf9dd
8 changed files with 336 additions and 6 deletions

View File

@@ -0,0 +1,50 @@
package com.lanyuanxiaoyao.service.configuration.entity.zookeeper;
/**
* Zookeeper 节点
*
* @author lanyuanxiaoyao
* @date 2023-05-23
*/
public class ZookeeperNode {
private String path;
private String label;
private Long createTime;
private Long modifiedTime;
public ZookeeperNode() {
}
public ZookeeperNode(String path, String label, Long createTime, Long modifiedTime) {
this.path = path;
this.label = label;
this.createTime = createTime;
this.modifiedTime = modifiedTime;
}
public String getPath() {
return path;
}
public String getLabel() {
return label;
}
public Long getCreateTime() {
return createTime;
}
public Long getModifiedTime() {
return modifiedTime;
}
@Override
public String toString() {
return "ZookeeperNode{" +
"path='" + path + '\'' +
", label='" + label + '\'' +
", createTime=" + createTime +
", modifiedTime=" + modifiedTime +
'}';
}
}