Skip to content

Commit 35c04ad

Browse files
committed
feat: generate contact type
Signed-off-by: Otavio Santana <[email protected]>
1 parent 6937de8 commit 35c04ad

File tree

1 file changed

+12
-0
lines changed
  • jnosql-oracle-nosql/src/test/java/org/eclipse/jnosql/databases/oracle/integration

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package org.eclipse.jnosql.databases.oracle.integration;
2+
3+
import jakarta.nosql.Column;
4+
import jakarta.nosql.Entity;
5+
import jakarta.nosql.Id;
6+
import org.eclipse.jnosql.databases.oracle.communication.ContactType;
7+
8+
@Entity
9+
public record Contact(@Id String id, @Column String name, @Column ContactType type) {
10+
11+
12+
}

0 commit comments

Comments
 (0)