mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#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:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user