|
@@ -27,6 +27,8 @@ public class PaperStruct implements Serializable {
|
|
|
|
|
|
private Integer detailCount;// 大题数量
|
|
|
|
|
|
+ private Integer detailUnitCount;//小题数量
|
|
|
+
|
|
|
private Map params;
|
|
|
|
|
|
private List<PaperDetailStruct> paperDetailStructs;// 大题
|
|
@@ -126,4 +128,12 @@ public class PaperStruct implements Serializable {
|
|
|
public void setCourseNo(String courseNo) {
|
|
|
this.courseNo = courseNo;
|
|
|
}
|
|
|
+
|
|
|
+ public Integer getDetailUnitCount() {
|
|
|
+ return detailUnitCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDetailUnitCount(Integer detailUnitCount) {
|
|
|
+ this.detailUnitCount = detailUnitCount;
|
|
|
+ }
|
|
|
}
|