All Downloads are FREE. Search and download functionalities are using the official Maven repository.

model.Doc Maven / Gradle / Ivy

The newest version!
package model;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.util.List;

/**
 *  Roger
 *  2018/3/6.
 */
@Data
@NoArgsConstructor
@AllArgsConstructor
public class Doc {

    private String id;
    private int ncitation;
    private List references;
    private int year;
    private List foses;
    private String issn;

    public Doc(String id, int year) {
        this.id = id;
        this.year = year;
    }

    public Doc(String id, int year, List foses, String issn) {
        this.id = id;
        this.year = year;
        this.foses = foses;
        this.issn = issn;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy