ドメインクラスが1つあります
class Store{
String name
Store hierarchy
Date dateCreated
Date lastUpdated
static hasMany=[storeRestrictions:StoreRestrictions]
boolean isBillable
boolean isConsignment
boolean isMassUploadPossible
static constraints = {
name(nullable:false,blank:false,maxSize:50,unique:true)
hierarchy(nullable:true,blank:true)
dateCreated()
lastUpdated()
isBillable()
isMassUploadPossible()
storeRestrictions(nullable:false)
}
}
たとえば、の検証を変更して、trueの場合に次のようになるようにする方法はbeforeInsert
ありますか?beforeUpdate
isConsignment
storeRestrictions
nullable:true