source:
branches/features/taskProcedureRework/grails-app/domain/TaskProcedure.groovy
@
754
Last change on this file since 754 was 754, checked in by , 14 years ago | |
---|---|
File size: 215 bytes |
Line | |
---|---|
1 | class 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.