我有 2 个表 - 人员和请求。
Person (id is PK):
id name req_id
Requests(id is PK):
id rid
在java中:
@Entity
public class Person{
@Id
Int id;
String name;
String req_id;
...}
@Entity
public class Requests{
@Id
Int id;
String rid;
...}`
我想做的是用req_id映射(OneToOne)摆脱。
不幸的是,我不能使用@SecondaryTable,因为这些表不是由主键映射的。我将不胜感激任何帮助...