From 34981c30a78e8bbd7791131059a9210f9928b62c Mon Sep 17 00:00:00 2001
From: 刘光辉 <347230014@qq.com>
Date: 星期四, 17 九月 2026 09:24:09 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master' into master
---
jnpf-dms/jnpf-dms-entity/src/main/java/jnpf/dmsEntity/permission/entity/DmsAccessExclusionEntity.java | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 55 insertions(+), 0 deletions(-)
diff --git a/jnpf-dms/jnpf-dms-entity/src/main/java/jnpf/dmsEntity/permission/entity/DmsAccessExclusionEntity.java b/jnpf-dms/jnpf-dms-entity/src/main/java/jnpf/dmsEntity/permission/entity/DmsAccessExclusionEntity.java
new file mode 100644
index 0000000..c449699
--- /dev/null
+++ b/jnpf-dms/jnpf-dms-entity/src/main/java/jnpf/dmsEntity/permission/entity/DmsAccessExclusionEntity.java
@@ -0,0 +1,55 @@
+package jnpf.dmsEntity.permission.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.Data;
+
+import java.util.Date;
+import java.util.UUID;
+
+@Data
+@TableName("dms_access_exclusions")
+public class DmsAccessExclusionEntity {
+ @TableId(value = "id", type = IdType.INPUT)
+ private UUID id;
+ @TableField("tenant_id")
+ private String tenantId;
+ @TableField("resource_type")
+ private String resourceType;
+ @TableField("resource_id")
+ private UUID resourceId;
+ @TableField("user_id")
+ private String userId;
+ @TableField("action_code")
+ private String actionCode;
+ @TableField("source_type")
+ private String sourceType;
+ @TableField("source_id")
+ private String sourceId;
+ @TableField("valid_from")
+ private Date validFrom;
+ @TableField("valid_to")
+ private Date validTo;
+ @TableField("exclude_reason")
+ private String excludeReason;
+ @TableField("excluded_by_type")
+ private String excludedByType;
+ @TableField("excluded_by_id")
+ private String excludedById;
+ @TableField("revoked_at")
+ private Date revokedAt;
+ @TableField("revoked_by_type")
+ private String revokedByType;
+ @TableField("revoked_by_id")
+ private String revokedById;
+ @TableField("revoke_reason")
+ private String revokeReason;
+ @TableField("revision")
+ private Long revision;
+ @TableField("created_at")
+ private Date createdAt;
+ @TableField("updated_at")
+ private Date updatedAt;
+}
--
Gitblit v1.8.0