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