派生自 projectDept/qhighschool

yn147
2023-10-26 3970ced88b5b456f03fe277c254ca761f05492e0
src/main/java/com/qxueyou/scc/exercise/model/ExerGroupResponseData.java
@@ -6,7 +6,7 @@
import java.util.Date;
/**
 * 练习组题目返回数据  V2.0
 * 练习组题目返回数据  V2.0
 * @author zhiyong
 *
 */
@@ -17,81 +17,81 @@
   private static final long serialVersionUID = -5268126429792723826L;
   
   
   /**-----------------------练习组基本信息      */
   /** 本套题目总数  */
   /**-----------------------练习组基本信息      */
   /** 本套题目总数  */
   private String groupId;
   
   /** 班级id  */
   /** 班级id  */
   private String classId;
   
   /** 科目id  */
   /** 科目id  */
   private String collegeCourseId;
   
   /** 机构id  */
   /** 机构id  */
   private String orgId;
   
   /** 课程id  */
   /** 课程id  */
   private String subjectId;
   
   /** 练习组名称  */
   /** 练习组名称  */
   private String name;
   
   /** 练习组类型  */
   /** 练习组类型  */
   private short type;
   
   /**练习时间  */
   /**练习时间  */
   private String exerciseTime;
   
   /** 做题方式(1:未做题优先  2:错题优先) */
   /** 做题方式(1:未做题优先  2:错题优先) */
   private String exerciseStrategy;
   
   /** 做题来源(1:练习题库  2:考试题库  3:家庭作业) */
   /** 做题来源(1:练习题库  2:考试题库  3:家庭作业) */
   private String exerciseSource;
   
   /** 做题模式(1:练习  2:考试) */
   /** 做题模式(1:练习  2:考试) */
   private String exerciseMode;
   
   /** 本套题目总数  */
   /** 本套题目总数  */
   private BigInteger allCount;
   
   /** 用于列表排序  */
   /** 用于列表排序  */
   private BigInteger orderNum;
   
   /** 题目更新时间  */
   /** 题目更新时间  */
   private Date updateTime;
   
   /** 最近一次提交答案的时间  */
   /** 最近一次提交答案的时间  */
   private Date answerUpdateTime;
   
   /** 本套题错题本更新时间  */
   /** 本套题错题本更新时间  */
   private Date faultUpdateTime;
   
   /** 本套题收藏本更新时间  */
   /** 本套题收藏本更新时间  */
   private Date favorUpdateTime;
   
   /** 本套题错题本个数 */
   /** 本套题错题本个数 */
   private BigInteger faultCount;
   
   /** 本套题收藏本个数  */
   /** 本套题收藏本个数  */
   private BigInteger favorCount;
   
   /**-----------------------做题记录基本信息      */
   /**-----------------------做题记录基本信息      */
   
   private String exerciseRecordId;
   
   /** 是否交卷  */
   /** 是否交卷  */
   private String status;
   
   /** 当前做题序号  */
   /** 当前做题序号  */
   private String currTitleNumber;
   
   /** 本次习题已做的个数  */
   /** 本次习题已做的个数  */
   private BigInteger doCount;
   
   /** 本次习题正确的个数  */
   /** 本次习题正确的个数  */
   private BigInteger correctCount;
   
   /** 已提交人数  */
   /** 已提交人数  */
   private BigInteger submitNumber;
   
   private BigDecimal completionRate;
@@ -100,15 +100,15 @@
   
   private BigDecimal score;
   /** 错题本 收藏本总数  */
   /** 错题本 收藏本总数  */
   private BigInteger extendAllCount;
   
   /** 班级正确率 排名  */
   /** 班级正确率 排名  */
   private String classAccuracy;
   
   private String classRank;
   
   /** 是否可重做true 可以重做  false 不能 */
   /** 是否可重做true 可以重做  false 不能 */
   private boolean repeatFlag;
   
   public String getGroupId() {