class Asset { SystemSection systemSection AssetType assetType String name String description = "" boolean isActive = true static hasMany = [maintenanceActions: MaintenanceAction] static belongsTo = [SystemSection] // static constraints = { // } String toString() { "${this.name}" } }