역할


1. 구조

public record StoredAttachment(
        String originalFilename, // 클라이언트에서 올라온 원본 파일명
        String storedFilename,   // 서버에 실제 저장된 이름(UUID + 원본)
        String contentType,      // MIME 타입 (ex: image/png, application/pdf)
        long sizeBytes,          // 파일 용량(bytes)
        String storagePath       // 서버/클라이언트에서 접근 가능한 URL 경로 (/uploads/...)
) {}

2. 설명


3. 포인트