diff --git a/securitycontrol-commons/securitycontrol-commons-entity/src/main/java/com/securitycontrol/entity/screen/vo/DtreeVo.java b/securitycontrol-commons/securitycontrol-commons-entity/src/main/java/com/securitycontrol/entity/screen/vo/DtreeVo.java
new file mode 100644
index 0000000..acc02ee
--- /dev/null
+++ b/securitycontrol-commons/securitycontrol-commons-entity/src/main/java/com/securitycontrol/entity/screen/vo/DtreeVo.java
@@ -0,0 +1,31 @@
+package com.securitycontrol.entity.screen.vo;
+
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+/**
+ * @author:cwchen
+ * @date:2024-04-01-10:09
+ * @version:1.0
+ * @description:Dtree实体类
+ */
+@Data
+public class DtreeVo {
+
+ @ApiModelProperty("id")
+ private String id;
+
+ @ApiModelProperty("名称")
+ private String title;
+
+ @ApiModelProperty("父ID")
+ private String parentId;
+
+ @ApiModelProperty("设备是否在线")
+ private String onLine;
+
+ @ApiModelProperty("层级")
+ private String level;
+
+ private boolean spread = true;
+}
diff --git a/securitycontrol-model/securitycontrol-background/src/main/resources/mapper/HumanManageMapper.xml b/securitycontrol-model/securitycontrol-background/src/main/resources/mapper/HumanManageMapper.xml
index 00ea681..1df08c1 100644
--- a/securitycontrol-model/securitycontrol-background/src/main/resources/mapper/HumanManageMapper.xml
+++ b/securitycontrol-model/securitycontrol-background/src/main/resources/mapper/HumanManageMapper.xml
@@ -138,7 +138,7 @@