-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPerformancePojo.java
More file actions
92 lines (73 loc) · 1.9 KB
/
PerformancePojo.java
File metadata and controls
92 lines (73 loc) · 1.9 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package techquiz.dto;
/**
*
* @author devanshi
*/
public class PerformancePojo {
private String userId;
private String examId;
private String language;
private int right;
private int wrong;
private int unattempted;
private double per;
public PerformancePojo()
{
}
public PerformancePojo(String userId, String examId, String language, int right, int wrong, int unattempted, double per) {
this.userId = userId;
this.examId = examId;
this.language = language;
this.right = right;
this.wrong = wrong;
this.unattempted = unattempted;
this.per = per;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getExamId() {
return examId;
}
public void setExamId(String examId) {
this.examId = examId;
}
public String getLanguage() {
return language;
}
public void setLanguage(String language) {
this.language = language;
}
public int getRight() {
return right;
}
public void setRight(int right) {
this.right = right;
}
public int getWrong() {
return wrong;
}
public void setWrong(int wrong) {
this.wrong = wrong;
}
public int getUnattempted() {
return unattempted;
}
public void setUnattempted(int unattempted) {
this.unattempted = unattempted;
}
public double getPer() {
return per;
}
public void setPer(double per) {
this.per = per;
}
}