我有一个域类,其中有两个日期,我希望其中一个填充为对象创建记录时的当前时间,例如创建时间戳...
class Contact {
Date initiatedDate
Date acceptedDate
}
仅仅在其中一个上新建一个Date
对象并让另一个可以为空,直到我需要填充它就足够了,有点像这样......
class Contact {
static constraints =
{
acceptedDate(nullable:true)
}
Date initiatedDate = new Date()
Date acceptedDate
}
我正在试验,但我想知道这是否是正确的方法,或者是否有更多 Grailsy 或 GORMy 我应该做的事情,比如说,一个init
函数,或者通过调整域对象定义来拥有一个默认,就像它做的那样id
and version
。
谢谢