-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathQuestionAnswerJavaBean.java
90 lines (70 loc) · 1.31 KB
/
QuestionAnswerJavaBean.java
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
package oaapDao;
public class QuestionAnswerJavaBean
{
private int qid,cid,status,count;
private String question,answer,a,b,c,d;
public int getCount()
{
return count;
}
public void setCount(int count) {
this.count = count;
}
public int getStatus()
{
return status;
}
public void setStatus(int status) {
this.status = status;
}
public int getQid()
{
return qid;
}
public void setQid(int qid) {
this.qid = qid;
}
public int getCid()
{
return cid;
}
public void setCid(int cid) {
this.cid = cid;
}
public String getQuestion() {
return question;
}
public void setQuestion(String question) {
this.question = question;
}
public String getAnswer() {
return answer;
}
public void setAnswer(String answer) {
this.answer = answer;
}
public String getA() {
return a;
}
public void setA(String a) {
this.a = a;
}
public String getB() {
return b;
}
public void setB(String b) {
this.b = b;
}
public String getC() {
return c;
}
public void setC(String c) {
this.c = c;
}
public String getD() {
return d;
}
public void setD(String d) {
this.d = d;
}
}