我在Domain类模型中遇到以下问题。
我有一个BaseDomainClass。
我用的是这样的:
class ScheduleAction extends BaseDomainClass{
...
static mapping = {
tablePerHierarchy false
}
}
这很好用。 BaseDomainClass的所有属性都写在ScheduleAction表中。
我现在遇到的问题是
class ScheduleActionAddActivityToPerson extends ScheduleAction{
static mapping = {
tablePerHierarchy true
discriminator column : 'TYP'
}
}
但我没有看到数据库表中描述的继承。
我想看到类似的东西:
table ScheduleAction
id
version
typ
但是我没有看到" typ"我的数据库中的字段。请问有人给我一个暗示吗?