source: trunk/grails-app/domain/Section.groovy @ 331

Last change on this file since 331 was 331, checked in by gav, 14 years ago

Add comment attribute to Section and limit description to 75 char.
Update detailed views to suite.

File size: 601 bytes
Line 
1class Section {
2
3    Site site
4    Department department
5
6    String name
7    String description = ""
8    String comment = ""
9    boolean isActive = true
10
11    static hasMany = [assets: Asset,
12                                maintenanceActions: MaintenanceAction,
13                                sectionExtendedAttributes: SectionExtendedAttribute]
14
15    static belongsTo = [Site]
16
17    static constraints = {
18        name(maxSize:50, unique:true, blank:false)
19        description(maxSize:75)
20        comment(maxSize:500)
21        isActive()
22    }
23
24    String toString() {
25        "${this.name}"
26    }
27}
28
Note: See TracBrowser for help on using the repository browser.