| Line | |
|---|
| 1 | class RecurringSchedule { |
|---|
| 2 | |
|---|
| 3 | Task task |
|---|
| 4 | Period period |
|---|
| 5 | PlannedMaintenance plannedMaintenance |
|---|
| 6 | |
|---|
| 7 | Integer recurEvery |
|---|
| 8 | Date startDate = new Date() |
|---|
| 9 | Date lastExecutedDate |
|---|
| 10 | Date nextDueDate |
|---|
| 11 | boolean isActive = true |
|---|
| 12 | |
|---|
| 13 | // static hasMany = [] |
|---|
| 14 | |
|---|
| 15 | static belongsTo = [Task] |
|---|
| 16 | |
|---|
| 17 | static constraints = { |
|---|
| 18 | plannedMaintenance(blank:true, nullable:true) |
|---|
| 19 | lastExecutedDate(blank:true, nullable:true) |
|---|
| 20 | } |
|---|
| 21 | |
|---|
| 22 | String toString() { |
|---|
| 23 | "Recur every ${recurEvery} ${period}" |
|---|
| 24 | } |
|---|
| 25 | } |
|---|
| 26 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.