Changeset 127 for trunk/grails-app/domain/MaintenanceAction.groovy
- Timestamp:
- May 6, 2009, 3:40:07 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/MaintenanceAction.groovy
r124 r127 1 class MaintenanceAction { 1 class TaskAction { 2 Task task 2 3 MaintenancePolicy maintenancePolicy 3 PlannedMaintenance plannedMaintenance4 4 SystemSection systemSection 5 5 Asset asset … … 8 8 SubAssembly subAssembly 9 9 ComponentItem componentItem 10 String maintenanceAction10 String action 11 11 String reasoning = "" 12 Integer pmStepNumber12 Integer stepNumber 13 13 boolean isActive = true 14 14 15 15 // static hasMany = [] 16 16 17 static belongsTo = [PlannedMaintenance]17 // static belongsTo = [] 18 18 19 19 static constraints = { … … 24 24 subAssembly(blank:true, nullable:true) 25 25 componentItem(blank:true, nullable:true) 26 pmStepNumber(blank:true, nullable:true)26 stepNumber(blank:true, nullable:true) 27 27 } 28 28
Note: See TracChangeset
for help on using the changeset viewer.