Concept Flow - Column mapping with @Column
Define Entity Class
Add @Entity Annotation
Add Fields
Annotate Fields with @Column
Set Column Properties (name, length, nullable, etc.)
Spring Boot Maps Fields to DB Columns
Use Repository to Save/Retrieve Data
This flow shows how you define a Java class as an entity, annotate its fields with @Column to map to database columns, and then Spring Boot uses this mapping to interact with the database.