#3337 Fix querybean-generation to not import the entity bean type

Use the full canonical name of the entity bean in the generated code.
This commit is contained in:
Rob Bygrave
2024-03-03 12:13:49 +13:00
parent cd780208e5
commit a2cdea24ed
8 changed files with 49 additions and 77 deletions
@@ -0,0 +1,14 @@
package org.example.domain;
import jakarta.persistence.Entity;
import jakarta.persistence.Id;
import jakarta.persistence.Version;
@Entity
public class Alias {
@Id
long id;
@Version
long version;
}