Ignore:
Timestamp:
Apr 30, 2009, 9:36:34 PM (15 years ago)
Author:
gav
Message:

Extensive update to Asset ERD and associated domain classes, not compiled or tested.

File:
1 edited

Legend:

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

    r118 r121  
    11class SystemSection {
     2   
     3    Site site
     4
    25    String name
    36    String description = ""
    47    boolean isActive = true
    58
    6     static hasMany = [assetTypes: AssetType, lifePlans: LifePlan]
    7 //
    8 //     static belongsTo = []
    9 //
     9    static hasMany = [assets: Asset, maintenanceActions: MaintenanceAction]
     10
     11    static belongsTo = [Site]
     12
    1013//     static constraints = {
    1114//
Note: See TracChangeset for help on using the changeset viewer.