Changeset 121 for trunk/grails-app/domain/Asset.groovy
- Timestamp:
- Apr 30, 2009, 9:36:34 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/Asset.groovy
r118 r121 1 1 class Asset { 2 LifePlan lifeplan2 SystemSection systemSection 3 3 AssetType assetType 4 4 String name 5 5 String description = "" 6 String locationLongText = ""7 Integer riskPriorityNumber8 String modelNumber = ""9 String serialNumber = ""10 Integer purchaseCost = 011 Date manufacturedDate = new Date()12 13 6 boolean isActive = true 14 7 15 // static hasMany = []16 // 17 // static belongsTo = []18 // 8 static hasMany = [maintenanceActions: MaintenanceAction] 9 10 static belongsTo = [SystemSection] 11 19 12 // static constraints = { 20 13 // }
Note: See TracChangeset
for help on using the changeset viewer.