Question.java
3.46 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
package com.fh.bean;
import java.util.List;
public class Question {
private String question_id ;
private String subject_id;
private String chapter_id;
private String problem_type_id;
private String knowledge_id;
private String content;
private String option_num;
private String option_content;
private String answer;
private String difficulty;
private String analysis;
private String question_from;
private String score;
private String part_score;
private String remark;
private String rank;
private String no_name;
private String sug_score;
private String sug_part_score;
private List<Question> questions;
public void setSubject_id(String subject_id) {
this.subject_id = subject_id;
}
public String getSubject_id() {
return this.subject_id;
}
public void setChapter_id(String chapter_id) {
this.chapter_id = chapter_id;
}
public String getChapter_id() {
return this.chapter_id;
}
public void setProblem_type_id(String problem_type_id) {
this.problem_type_id = problem_type_id;
}
public String getProblem_type_id() {
return this.problem_type_id;
}
public void setKnowledge_id(String knowledge_id) {
this.knowledge_id = knowledge_id;
}
public String getKnowledge_id() {
return this.knowledge_id;
}
public void setContent(String content) {
this.content = content;
}
public String getContent() {
return this.content;
}
public void setOption_num(String option_num) {
this.option_num = option_num;
}
public String getOption_num() {
return this.option_num;
}
public void setOption_content(String option_content) {
this.option_content = option_content;
}
public String getOption_content() {
return this.option_content;
}
public void setAnswer(String answer) {
this.answer = answer;
}
public String getAnswer() {
return this.answer;
}
public void setDifficulty(String difficulty) {
this.difficulty = difficulty;
}
public String getDifficulty() {
return this.difficulty;
}
public void setAnalysis(String analysis) {
this.analysis = analysis;
}
public String getAnalysis() {
return this.analysis;
}
public void setQuestion_from(String question_from) {
this.question_from = question_from;
}
public String getQuestion_from() {
return this.question_from;
}
public void setScore(String score) {
this.score = score;
}
public String getScore() {
return this.score;
}
public void setPart_score(String part_score) {
this.part_score = part_score;
}
public String getPart_score() {
return this.part_score;
}
public void setRemark(String remark) {
this.remark = remark;
}
public String getRemark() {
return this.remark;
}
public void setRank(String rank) {
this.rank = rank;
}
public String getRank() {
return this.rank;
}
public void setNo_name(String no_rank) {
this.no_name = no_rank;
}
public String getNo_name() {
return this.no_name;
}
public void setSug_score(String sug_score){
this.sug_score = sug_score ;
}
public void setSug_part_score(String sug_part_score){
this.sug_part_score = sug_part_score ;
}
public String getSug_score(){
return this.sug_score;
}
public String getSug_part_score(){
return this.sug_part_score;
}
public String getQuestion_id() {
return question_id;
}
public void setQuestion_id(String question_id) {
this.question_id = question_id;
}
public void setQuestions(List<Question> questions) {
this.questions = questions;
}
public List<Question> getQuestions() {
return this.questions;
}
}