刘光辉
13 小时以前 34981c30a78e8bbd7791131059a9210f9928b62c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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;
}