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_permission_resources") public class DmsPermissionResourceEntity { @TableId(value = "id", type = IdType.INPUT) private UUID id; @TableField("tenant_id") private String tenantId; @TableField("resource_type") private String resourceType; @TableField("source_type") private String sourceType; @TableField("source_id") private String sourceId; @TableField("registered_by") private String registeredBy; @TableField("created_at") private Date createdAt; }