package cn.iocoder.yudao.module.system.controller.admin.storage.vo; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import java.time.LocalDateTime; import java.util.List; @Schema(description = "管理后台 - 附件视图 Response VO") @Data public class SystemStorageAttachmentRespVO { @Schema(description = "附件ID") private Long id; @Schema(description = "关联记录类型") private String recordType; @Schema(description = "关联记录ID") private Long recordId; @Schema(description = "文件用途") private String application; @Schema(description = "关联文件ID") private Long storageBlobId; @Schema(description = "创建时间") private LocalDateTime createTime; @Schema(description = "嵌套的文件视图列表") private List blobList; }