source: trunk/grails-app/domain/dbnp/studycapturing/Publication.groovy @ 1430

Last change on this file since 1430 was 1430, checked in by work@…, 12 years ago
  • set keyword expansion
  • Property svn:keywords set to Rev Author Date
File size: 829 bytes
Line 
1package dbnp.studycapturing
2
3/**
4 * The Publication class represents a PubMed-registered publication.
5 * Publication entries should be created using the study wizard, which connects to PubMed to fill in the fields.
6 * Since a Publication can apply to multiple studies, the entries in this table form an independent 'library'
7 * and are not connected to Study instances via a cascading relation.
8 *
9 * Revision information:
10 * $Rev: 1430 $
11 * $Author: work@osx.eu $
12 * $Date: 2011-01-21 20:05:36 +0000 (vr, 21 jan 2011) $
13 */
14class Publication extends nl.grails.plugins.gdt.Identity {
15        String title
16        String pubMedID
17        String DOI      // document identifier, see dx.doi.org
18        String authorsList
19        String comments
20
21        static constraints = {
22                pubMedID(nullable: true, blank: true)
23                DOI(nullable: true, blank: true)
24                authorsList(nullable: true, blank: true)
25                comments(nullable: true, blank: true)
26        }
27}
Note: See TracBrowser for help on using the repository browser.