diff --git a/ruoyi-modules/Property/src/main/java/org/dromara/property/domain/AttendanceAreaDevice.java b/ruoyi-modules/Property/src/main/java/org/dromara/property/domain/AttendanceAreaDevice.java
new file mode 100644
index 00000000..32c7362d
--- /dev/null
+++ b/ruoyi-modules/Property/src/main/java/org/dromara/property/domain/AttendanceAreaDevice.java
@@ -0,0 +1,42 @@
+package org.dromara.property.domain;
+
+import org.dromara.common.tenant.core.TenantEntity;
+import com.baomidou.mybatisplus.annotation.*;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+import java.io.Serial;
+
+/**
+ * 摄像头区域中间表 attendance_area_device
+ *
+ * @author LionLi
+ * @date 2025-08-13
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+@TableName("attendance_area_device")
+public class AttendanceAreaDevice extends TenantEntity {
+
+ @Serial
+ private static final long serialVersionUID = 1L;
+
+ /**
+ * 主键id
+ */
+ @TableId(value = "id")
+ private Long id;
+
+ /**
+ * 区域id
+ */
+ private Long areaId;
+
+ /**
+ * 摄像机id
+ */
+ private String deviceManageId;
+
+
+
+}
diff --git a/ruoyi-modules/pom.xml b/ruoyi-modules/pom.xml
index 267aca5a..bb867d3f 100644
--- a/ruoyi-modules/pom.xml
+++ b/ruoyi-modules/pom.xml
@@ -14,7 +14,7 @@
ruoyi-job
ruoyi-resource
ruoyi-workflow
-
+ Property