派生自 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package com.qxueyou.scc.school.model;
 
import java.io.Serializable;
 
/**
 * 讲义收藏提交结果数据
 * @author zhiyong
 *
 */
public class HandoutAnswerData implements Serializable {
    
    /**
     * 
     */
    private static final long serialVersionUID = 5231270523566561011L;
    
    private String id;
    
    /** 当前讲义ID  */ 
    private String handoutId;
 
    /** 讲义当前页ID  */
    private String handoutPageId;
 
    /**  收藏or删除收藏     true:收藏     false:删除收藏  */
    private boolean favor;
 
    /**  用户ID */
    private String userId;
 
    /**  班级ID */
    private String classId;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getHandoutId() {
        return handoutId;
    }
 
    public void setHandoutId(String handoutId) {
        this.handoutId = handoutId;
    }
 
    public String getHandoutPageId() {
        return handoutPageId;
    }
 
    public void setHandoutPageId(String handoutPageId) {
        this.handoutPageId = handoutPageId;
    }
 
    public boolean getFavor() {
        return favor;
    }
 
    public void setFavor(boolean favor) {
        this.favor = favor;
    }
 
    public String getUserId() {
        return userId;
    }
 
    public void setUserId(String userId) {
        this.userId = userId;
    }
 
    public String getClassId() {
        return classId;
    }
 
    public void setClassId(String classId) {
        this.classId = classId;
    }
}