package eu.dnetlib.openaire.db.objects;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;




@Entity(name = "countries")
@Table(name = "countries")
public class Country extends AbstractOpenaireObject {

	/**
	 * 
	 */
	private static final long serialVersionUID = 3762227418127715772L;

	@Id
	@Column(name = "countryID")
	private String countryID;
	
	@Column(name = "name")
	private String name;

	public String getCountryID() {
		return countryID;
	}

	public void setCountryID(String countryID) {
		this.countryID = countryID;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

}
