source: trunk/grails-app/domain/AssetExtendedAttribute.groovy @ 122

Last change on this file since 122 was 122, checked in by gav, 15 years ago

Run generate-all on all controllers and views except Person and Authority.
Extensive work on Asset domain and application now compiles and runs well.
Update BootStrap? to suite.

File size: 326 bytes
Line 
1class AssetExtendedAttribute {
2
3    AssetType assetType
4    AssetExtendedAttributeType assetExtendedAttributeType
5
6    String value
7    boolean isActive = true
8
9//     static hasMany = []
10
11    static belongsTo = [AssetType]
12
13//     static constraints = {
14//
15//     }
16
17    String toString() {
18        "${this.value}"
19    }
20}
21
Note: See TracBrowser for help on using the repository browser.