Last change
on this file since 127 was
121,
checked in by gav, 16 years ago
|
Extensive update to Asset ERD and associated domain classes, not compiled or tested.
|
File size:
344 bytes
|
Rev | Line | |
---|
[118] | 1 | class SubAssembly { |
---|
[121] | 2 | |
---|
[118] | 3 | String name |
---|
| 4 | String description = "" |
---|
| 5 | boolean isActive = true |
---|
| 6 | |
---|
[121] | 7 | static hasMany = [assemblies: Assembly, componentItems: ComponentItem, maintenanceActions: MaintenanceAction] |
---|
[118] | 8 | |
---|
| 9 | static belongsTo = [Assembly] |
---|
| 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.