class Assembly { String name String description = "" boolean isActive = true static hasMany = [assetTypes: AssetType, subAssemblies: SubAssembly, maintenanceActions: MaintenanceAction] static belongsTo = [AssetType] // static constraints = { // // } String toString() { "${this.name}" } }