|
@@ -178,13 +178,13 @@ public class ExamQuestion implements Serializable {
|
|
|
this.totalScore = totalScore;
|
|
|
}
|
|
|
|
|
|
- public String getName() {
|
|
|
- if (mainTitle != null && getSubNumber() != null) {
|
|
|
- return mainTitle + "-" + getSubNumber();
|
|
|
- } else {
|
|
|
- return "";
|
|
|
- }
|
|
|
- }
|
|
|
+ // public String getName() {
|
|
|
+ // if (mainTitle != null && getSubNumber() != null) {
|
|
|
+ // return mainTitle + "-" + getSubNumber();
|
|
|
+ // } else {
|
|
|
+ // return "";
|
|
|
+ // }
|
|
|
+ // }
|
|
|
|
|
|
public List<Double> getScoreList() {
|
|
|
List<Double> list = new LinkedList<Double>();
|
|
@@ -344,6 +344,10 @@ public class ExamQuestion implements Serializable {
|
|
|
this.selectivePart = selectivePart;
|
|
|
}
|
|
|
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+
|
|
|
public void setName(String name) {
|
|
|
this.name = name;
|
|
|
}
|