source: trunk/grails-app/domain/ManufacturerType.groovy @ 116

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

First commit of Inventory domain, including domain-classes, controllers, views and bootstrap. Also double check/adjust as required security extends in controllers.

File size: 326 bytes
Line 
1class ManufacturerType {
2    String name
3    String description = ""
4    boolean isActive = true
5
6    static hasMany = [manufacturers: Manufacturer]
7   
8    static contstraints = {
9        name(maxSize:50,unique:true,blank:false)
10        description(maxSize:100)
11    }
12
13    String toString() {
14        "${this.name}"
15    }
16}
Note: See TracBrowser for help on using the repository browser.