-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUserPerference.java
More file actions
47 lines (42 loc) · 1.03 KB
/
UserPerference.java
File metadata and controls
47 lines (42 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.nxdcms.entity;
import java.io.Serializable;
import java.util.Date;
public class UserPerference implements Serializable{
/**
*
*/
private static final long serialVersionUID = -8512269300545226897L;
private long studentId;
private long competitionId;
private float perferences;
private Date time;
public long getStudentId() {
return studentId;
}
public void setStudentId(long studentId) {
this.studentId = studentId;
}
public long getCompetitionId() {
return competitionId;
}
public void setCompetitionId(long competitionId) {
this.competitionId = competitionId;
}
public float getPerferences() {
return perferences;
}
public void setPerferences(float perferences) {
this.perferences = perferences;
}
public Date getTime() {
return time;
}
public void setTime(Date time) {
this.time = time;
}
@Override
public String toString() {
return "UserPerference [studentId=" + studentId + ", competitionId=" + competitionId + ", perferences="
+ perferences + ", time=" + time + "]";
}
}