source:
branches/features/taskProcedureRework/grails-app/domain/TaskProcedure.groovy
@
756
Last change on this file since 756 was 754, checked in by , 14 years ago | |
---|---|
File size: 215 bytes |
Rev | Line | |
---|---|---|
[131] | 1 | class TaskProcedure { |
2 | ||
3 | static hasMany = [tasks: Task, maintenanceActions: MaintenanceAction] | |
4 | ||
5 | // static belongsTo = [] | |
6 | ||
7 | static constraints = { | |
8 | } | |
9 | ||
10 | String toString() { | |
[754] | 11 | "${this.id}" |
[131] | 12 | } |
13 | } |
Note: See TracBrowser
for help on using the repository browser.