source: branches/features/taskProcedureRework/grails-app/domain/TaskProcedure.groovy @ 754

Last change on this file since 754 was 754, checked in by gav, 13 years ago

Domain change, remove unused fields from TaskProcedure?.

File size: 215 bytes
Line 
1class TaskProcedure {
2
3    static hasMany = [tasks: Task, maintenanceActions: MaintenanceAction]
4
5//     static belongsTo = []
6
7    static constraints = {
8    }
9
10    String toString() {
11        "${this.id}"
12    }
13}
Note: See TracBrowser for help on using the repository browser.