|
@@ -9,6 +9,7 @@ public enum QuestionSubject {
|
|
|
IR("ir", "综合推理"),
|
|
|
AWA("awa", "作文"),
|
|
|
|
|
|
+ SENTENCE("sentence", "长难句"),
|
|
|
;
|
|
|
|
|
|
final static public String message = "考试结构:学科";
|
|
@@ -43,6 +44,8 @@ public enum QuestionSubject {
|
|
|
return IR;
|
|
|
case AWA:
|
|
|
return AWA;
|
|
|
+ case SENTENCE:
|
|
|
+ return SENTENCE;
|
|
|
default:
|
|
|
return null;
|
|
|
}
|