1、父类:
@Entity
@Table(name = "tab_product")
@Inheritance(strategy = InheritanceType.JOINED)
2、子类
@Entity
@Table(name = "tab_cpa_product")
@PrimaryKeyJoinColumn(name = "cpaProductId")
Hibernate表集成
最新推荐文章于 2024-09-10 21:57:04 发布
1、父类:
@Entity
@Table(name = "tab_product")
@Inheritance(strategy = InheritanceType.JOINED)
2、子类
@Entity
@Table(name = "tab_cpa_product")
@PrimaryKeyJoinColumn(name = "cpaProductId")