Changeset 121 for trunk/grails-app/domain/Assembly.groovy
- Timestamp:
- Apr 30, 2009, 9:36:34 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/Assembly.groovy
r118 r121 1 1 class Assembly { 2 LifePlan lifeplan3 2 String name 4 3 String description = "" 5 4 boolean isActive = true 6 5 7 static hasMany = [assetTypes: AssetType, subAssemblies: SubAssembly ]6 static hasMany = [assetTypes: AssetType, subAssemblies: SubAssembly, maintenanceActions: MaintenanceAction] 8 7 9 8 static belongsTo = [AssetType]
Note: See TracChangeset
for help on using the changeset viewer.