|
@@ -542,6 +542,9 @@ public class EPaperStudentService {
|
542
|
542
|
qmap.remove("mquestionid");
|
543
|
543
|
qmap.remove("mctype");
|
544
|
544
|
qmap.remove("questionpid");
|
|
545
|
+ qmap.remove("mqanalyze");
|
|
546
|
+ qmap.remove("mqanswer");
|
|
547
|
+ qmap.remove("mqlevel");
|
545
|
548
|
|
546
|
549
|
mqlist.add(qmap);
|
547
|
550
|
} else {
|
|
@@ -574,11 +577,24 @@ public class EPaperStudentService {
|
574
|
577
|
}
|
575
|
578
|
mque.put("score", sontotalsocre);
|
576
|
579
|
mque.put("stuscore", stuscore);
|
|
580
|
+ if (N_Utils.isNotEmpty(sque.get("mqanalyze"))) {
|
|
581
|
+ mque.put("qanalyze", sque.get("mqanalyze").toString());
|
|
582
|
+ } else {
|
|
583
|
+ mque.put("qanalyze", "");
|
|
584
|
+ }
|
|
585
|
+ if (N_Utils.isNotEmpty(sque.get("mqanswer"))) {
|
|
586
|
+ mque.put("qanswer", sque.get("mqanswer").toString());
|
|
587
|
+ } else {
|
|
588
|
+ mque.put("qanswer", "");
|
|
589
|
+ }
|
577
|
590
|
|
578
|
591
|
for (Map sonquem : sonqueslist) {
|
579
|
592
|
sonquem.remove("mqstem");
|
580
|
593
|
sonquem.remove("mqoption");
|
581
|
|
- sonquem.remove("msum");
|
|
594
|
+ sonquem.remove("msnum");
|
|
595
|
+ sonquem.remove("mqanalyze");
|
|
596
|
+ sonquem.remove("mqanswer");
|
|
597
|
+ sonquem.remove("mqlevel");
|
582
|
598
|
sonquem.remove("mqtypeid");
|
583
|
599
|
sonquem.remove("mqtypename");
|
584
|
600
|
sonquem.remove("mhashear");
|