class SystemSection { String name String description = "" boolean isActive = true static hasMany = [assetTypes: AssetType, lifePlans: LifePlan] // // static belongsTo = [] // // static constraints = { // // } String toString() { "${this.name}" } }