Last change
on this file since 959 was
959,
checked in by j.a.m.wesbeek@…, 12 years ago
|
|
-
Property svn:keywords set to
Author Date Rev
|
File size:
807 bytes
|
Line | |
---|
1 | package 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: 959 $ |
---|
11 | * $Author: j.a.m.wesbeek@umail.leidenuniv.nl $ |
---|
12 | * $Date: 2010-10-20 19:13:14 +0000 (wo, 20 okt 2010) $ |
---|
13 | */ |
---|
14 | class Publication extends 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.