package com.qxueyou.scc.exercise.model;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* 练习 收藏 错题提交结果 V2.0
|
* @author zhiyong
|
*
|
*/
|
public class ExciseExtendReqData implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = -2199951806284069255L;
|
|
|
private String exerciseGroupId;
|
|
private String exerciseGroupType;
|
|
private List<ExerciseExtendRecordData> items;
|
|
public List<ExerciseExtendRecordData> getItems() {
|
return items;
|
}
|
|
public void setItems(List<ExerciseExtendRecordData> items) {
|
this.items = items;
|
}
|
|
public String getExerciseGroupType() {
|
return exerciseGroupType;
|
}
|
|
public void setExerciseGroupType(String exerciseGroupType) {
|
this.exerciseGroupType = exerciseGroupType;
|
}
|
|
public String getExerciseGroupId() {
|
return exerciseGroupId;
|
}
|
|
public void setExerciseGroupId(String exerciseGroupId) {
|
this.exerciseGroupId = exerciseGroupId;
|
}
|
|
|
}
|