Last change
on this file since 70 was
70,
checked in by keesvb, 12 years ago
|
updated to Grails 1.2, restructured packages, added some domain classes, removed obsolete code
|
-
Property svn:keywords set to
Rev Date Author
|
File size:
496 bytes
|
Line | |
---|
1 | package dbnp.transcriptomics.magetab.idf |
---|
2 | |
---|
3 | class Publication { |
---|
4 | |
---|
5 | String title |
---|
6 | String pubMedID |
---|
7 | String DOI |
---|
8 | OntologyTerm status |
---|
9 | String status_term_source_ref |
---|
10 | String authors_list |
---|
11 | |
---|
12 | static hasMany = [ |
---|
13 | authors: Person |
---|
14 | ] |
---|
15 | |
---|
16 | static constraints = { |
---|
17 | status(nullable:true,blank:true) |
---|
18 | title(nullable:true,blank:true) |
---|
19 | pubMedID(nullable:true,blank:true) |
---|
20 | DOI(nullable:true,blank:true) |
---|
21 | authors_list(nullable:true,blank:true) |
---|
22 | } |
---|
23 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.