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;
|
}
|
}
|