source:
trunk/grails-app/domain/EntryType.groovy
| Last change on this file was 373, checked in by , 16 years ago | |
|---|---|
| File size: 301 bytes | |
| Rev | Line | |
|---|---|---|
| [66] | 1 | class EntryType { |
| 2 | String name | |
| 3 | String description = "" | |
| 4 | boolean isActive = true | |
| 5 | ||
| 6 | static hasMany = [entries: Entry] | |
| [146] | 7 | |
| [373] | 8 | static constraints = { |
| [116] | 9 | name(maxSize:50,unique:true,blank:false) |
| 10 | description(maxSize:100) | |
| [66] | 11 | } |
| 12 | ||
| 13 | String toString() { | |
| 14 | "${this.name}" | |
| 15 | } | |
| 16 | } |
Note: See TracBrowser
for help on using the repository browser.
