source: trunk/grails-app/domain/SystemSection.groovy @ 118

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

First commit of Asset domain, including domain-classes, controllers, views and bootstrap.

File size: 298 bytes
Line 
1class SystemSection {
2    String name
3    String description = ""
4    boolean isActive = true
5
6    static hasMany = [assetTypes: AssetType, lifePlans: LifePlan]
7//
8//     static belongsTo = []
9//
10//     static constraints = {
11//
12//     }
13
14    String toString() {
15        "${this.name}"
16    }
17}
18
Note: See TracBrowser for help on using the repository browser.