class ComponentItem { LifePlan lifeplan String name String description = "" Integer fmeaNumber boolean isActive = true static hasMany = [subAssemblies: SubAssembly] static belongsTo = [SubAssembly] // static constraints = { // // } String toString() { "${this.name}" } }