【发布时间】:2010-06-05 06:35:33
【问题描述】:
我有一个实体:
-
BaseEntity--> 其中包含用户登录信息,如 createdBy、createdTime、EditedBy、editedTime -
Employee--> 其中包含员工信息,如姓名、地址等...... -
RegularEmployee--> 包含工资、奖金等字段 和 -
ContactEmployee--> 其中包含 HourlyRate、contactPeriod 等......
我的继承结构是
在这种情况下如何设计数据库结构,考虑到所有表都有 id 和 version 字段(所有表都应该至少有这两个字段)。
【问题讨论】:
标签: java hibernate inheritance orm