source: trunk/grails-app/domain/Period.groovy @ 131

Last change on this file since 131 was 131, checked in by gav, 15 years ago

Reconfigure Planned Maintenance again, now Preventative Maintenance, TaskProcedure? and MaintenanceAction?

File size: 271 bytes
Line 
1class Period {
2
3    String period
4    boolean isActive = true
5
6    static hasMany = [taskRecurringSchedules: TaskRecurringSchedule]
7//
8//     static belongsTo = []
9//
10//     static constraints = {
11//
12//     }
13
14    String toString() {
15        "${this.period}"
16    }
17}
18
Note: See TracBrowser for help on using the repository browser.