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:
339 bytes
|
Line | |
---|
1 | class Assembly { |
---|
2 | String name |
---|
3 | String description = "" |
---|
4 | boolean isActive = true |
---|
5 | |
---|
6 | static hasMany = [assetTypes: AssetType, subAssemblies: SubAssembly, maintenanceActions: MaintenanceAction] |
---|
7 | |
---|
8 | static belongsTo = [AssetType] |
---|
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.