Add BookSummary record projection (corner-scenario enrichment)

This commit is contained in:
2026-07-25 08:18:30 +00:00
parent 34cba41805
commit f68ce9b41a

View File

@@ -0,0 +1,7 @@
package com.ankurm.sdjpa4demo.domain;
import java.math.BigDecimal;
// Projection / DTO value object - only what the caller needs. Spring Data populates
// this via constructor-matching (a class-based projection), no @Query required.
public record BookSummary(String title, BigDecimal amount) {}