class Asset { LifePlan lifeplan AssetType assetType String name String description = "" String locationLongText = "" Integer riskPriorityNumber String modelNumber = "" String serialNumber = "" Integer purchaseCost = 0 Date manufacturedDate = new Date() boolean isActive = true // static hasMany = [] // // static belongsTo = [] // // static constraints = { // } String toString() { "${this.name}" } }