Project

General

Profile

1
package eu.dnetlib.organizations.model.view;
2

    
3
import java.io.Serializable;
4

    
5
import javax.persistence.Column;
6
import javax.persistence.Entity;
7
import javax.persistence.Id;
8
import javax.persistence.Table;
9

    
10
@Entity
11
@Table(name = "suggestions_info_by_country_view")
12
public class SuggestionInfoViewByCountry implements Serializable {
13

    
14
	/**
15
	 *
16
	 */
17
	private static final long serialVersionUID = -6814272980951063075L;
18

    
19
	@Id
20
	@Column(name = "country")
21
	private String country;
22

    
23
	@Column(name = "n_duplicates")
24
	private long nDuplicates;
25

    
26
	@Column(name = "n_conflicts")
27
	private long nConflicts;
28

    
29
	public String getCountry() {
30
		return country;
31
	}
32

    
33
	public void setCountry(final String country) {
34
		this.country = country;
35
	}
36

    
37
	public long getnDuplicates() {
38
		return nDuplicates;
39
	}
40

    
41
	public void setnDuplicates(final long nDuplicates) {
42
		this.nDuplicates = nDuplicates;
43
	}
44

    
45
	public long getnConflicts() {
46
		return nConflicts;
47
	}
48

    
49
	public void setnConflicts(final long nConflicts) {
50
		this.nConflicts = nConflicts;
51
	}
52

    
53
}
(10-10/11)