Last change
on this file since 64 was
64,
checked in by ademcan, 13 years ago
|
Loading new magetab data in the database from IDF file.
|
File size:
475 bytes
|
Line | |
---|
1 | package 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.