Last change
on this file since 125 was
121,
checked in by gav, 16 years ago
|
Extensive update to Asset ERD and associated domain classes, not compiled or tested.
|
File size:
330 bytes
|
Line | |
---|
1 | class PlannedMaintenance { |
---|
2 | |
---|
3 | RecurringSchedule recurringSchedule |
---|
4 | |
---|
5 | String name |
---|
6 | String description = "" |
---|
7 | boolean isActive = true |
---|
8 | |
---|
9 | static hasMany = [maintenanceActions: MaintenanceAction] |
---|
10 | |
---|
11 | // static belongsTo = [] |
---|
12 | |
---|
13 | // static constraints = { |
---|
14 | // } |
---|
15 | |
---|
16 | String toString() { |
---|
17 | "${this.name}" |
---|
18 | } |
---|
19 | } |
---|
20 | |
---|
Note: See
TracBrowser
for help on using the repository browser.