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

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

Run generate-all on all controllers and views except Person and Authority.
Extensive work on Asset domain and application now compiles and runs well.
Update BootStrap? to suite.

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