Files
use-annotation/src/main/java/dev/struchkov/example/useannotation/TestEntity.java
Struchkov Mark 11c911ef05 InitCommit
2022-02-13 17:22:23 +03:00

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;
}