派生自 projectDept/qhighschool

EricsHu
2022-12-05 068fc7f2e81178e55fa191a13709af64b1a163f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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;
    }
    
    
}