1
All checks were successful
Build and Push to Target Registry / 构建并推送镜像到目标仓库 (push) Successful in 6m2s

This commit is contained in:
dy 2025-08-15 10:54:13 +08:00
parent 77bfdd2823
commit 44beda8f34
2 changed files with 43 additions and 1 deletions

View File

@ -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;
}

View File

@ -14,7 +14,7 @@
<module>ruoyi-job</module>
<module>ruoyi-resource</module>
<module>ruoyi-workflow</module>
<!-- <module>Property</module>-->
<module>Property</module>
<!-- <module>Sis</module>-->
</modules>