1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package models;
- import (
- "time";
- );
- /*{
- "id": *?,
- "external_id": *?,
- "year": ????,
- "journal": "*?",
- "title": "*?",
- "volume": "???",
- "issue": "?-?",
- "pages": "???-???",
- "quartile": "",
- "doi": "*?",
- "link": "*?",
- "npr_number": *?,
- "employed_number": *?,
- "started_at": "????-??-??T??:??:??.???+??:??"
- }*/
- type Publication struct {
- Id int `gorm:"primary_key"`;
- ExternalId int `sql:"index"`;
- Year int;
- Journal string;
- Title string;
- Volume string;
- Issue string;
- Pages string;
- Quartile string;
- DOI string;
- Link string;
- NprNumber int;
- EmployedNumber int;
- StartedAt time.Time;
- };
|