Annotation Interface Association


@Target(FIELD) @Retention(RUNTIME) public @interface Association
Indicates an association relationship between entities.
 @Entity
 class Department {
     @Association
     List<Employee> employeeList;
 }

 @Entity
 class Employee {
     @Association
     Department department;
 }
 

This annotation is applied to fields that represent a relationship between entities, enabling the framework to automatically handle entity relationships during database operations.