Last change
on this file since 119 was
118,
checked in by gav, 16 years ago
|
First commit of Asset domain, including domain-classes, controllers, views and bootstrap.
|
File size:
292 bytes
|
Line | |
---|
1 | class Form { |
---|
2 | String name |
---|
3 | String description = "" |
---|
4 | boolean isActive = true |
---|
5 | boolean isUsed = true |
---|
6 | |
---|
7 | static hasMany = [lifePlans: LifePlan] |
---|
8 | // |
---|
9 | // static belongsTo = [] |
---|
10 | // |
---|
11 | // static constraints = { |
---|
12 | // |
---|
13 | // } |
---|
14 | |
---|
15 | String toString() { |
---|
16 | "${this.name}" |
---|
17 | } |
---|
18 | } |
---|
19 | |
---|
Note: See
TracBrowser
for help on using the repository browser.