mirror of
https://github.com/Example-uPagge/use-annotation.git
synced 2024-06-14 16:42:26 +03:00
13 lines
220 B
Java
13 lines
220 B
Java
package dev.struchkov.example.useannotation;
|
|
|
|
import dev.struchkov.example.annotation.FieldNames;
|
|
|
|
@FieldNames
|
|
public class TestEntity {
|
|
|
|
private Long id;
|
|
private String title;
|
|
private String phoneNumber;
|
|
|
|
}
|