Annotation Interface Column
Русский: Аннотация указывает, соотношения имя поля в сущности и имя в колонке таблицы базы данных.
English: Annotation specifies the relationship between the field name in an entity and the name in a column of a database table.
Пример / Example:
English: Annotation specifies the relationship between the field name in an entity and the name in a column of a database table.
Пример / Example:
public record User(@Column("fullname") String fullName) {}
- See Also:
-
Required Element Summary
Required Elements
-
Element Details
-
value
String value- Returns:
- Русский: Имя поля сущности в базе данных.
English: The name of the entity field in the database.
-