source: trunk/grails-app/domain/Study.groovy @ 18

Last change on this file since 18 was 18, checked in by gajula, 13 years ago

Domain classes

  • Property svn:keywords set to Date Author Rev
File size: 315 bytes
Line 
1/**
2 * Study Domain
3 *
4 * @author      email2gajula@gmail.com
5 * @since       20091019
6 *
7 * Revision information:
8 * $Rev: 18 $
9 * $Author: gajula $
10 * $Date: 2009-10-22 07:15:48 +0000 (do, 22 okt 2009) $
11 */
12
13class Study {
14
15    String      name
16    String      description
17    Date        created
18    Date        modified
19    Integer     StudyType
20
21    static constraints = {
22    }
23}
Note: See TracBrowser for help on using the repository browser.