在我的项目中,有许多字典信息:
@Entity
@Table
class Dict{
String type;
String value;
String desc;
boolean valid;
}
@Entity
@Table
class User{
String name;
Dict post;
Dict staffType;
....
}
如何映射这些Dict实体? 我不想使用复合主键,这将创建两个带有一个字段的foreignKey。