Ignore:
Timestamp:
May 1, 2009, 3:27:41 PM (15 years ago)
Author:
gav
Message:

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:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/domain/Period.groovy

    r120 r122  
    1 class Frequency {
    2     String frequency
     1class Period {
     2    String period
    33    boolean isActive = true
    44
    5     static hasMany = [lifePlans: LifePlan]
     5    static hasMany = [recurringSchedules: RecurringSchedule]
    66//
    77//     static belongsTo = []
     
    1212
    1313    String toString() {
    14         "${this.frequency}"
     14        "${this.period}"
    1515    }
    1616}
Note: See TracChangeset for help on using the changeset viewer.