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