|
|
@@ -1,6 +1,8 @@
|
|
|
package com.ruoyi.learn.domain;
|
|
|
|
|
|
import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
@@ -9,7 +11,7 @@ import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
|
|
/**
|
|
|
* 学生错题本对象 learn_wrong_book
|
|
|
- *
|
|
|
+ *
|
|
|
* @author ruoyi
|
|
|
* @date 2025-09-25
|
|
|
*/
|
|
|
@@ -101,213 +103,249 @@ public class LearnWrongBook extends BaseEntity
|
|
|
/** 是否收藏 */
|
|
|
@Excel(name = "是否收藏")
|
|
|
private Long collect;
|
|
|
+ String answer;
|
|
|
+ List<String> attachments;
|
|
|
+ String typeId;
|
|
|
+ private String qtpye;
|
|
|
+
|
|
|
+ public String getQtpye() {
|
|
|
+ return qtpye;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setQtpye(String qtpye) {
|
|
|
+ this.qtpye = qtpye;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTypeId() {
|
|
|
+ return typeId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTypeId(String typeId) {
|
|
|
+ this.typeId = typeId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAnswer() {
|
|
|
+ return answer;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAnswer(String answer) {
|
|
|
+ this.answer = answer;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<String> getAttachments() {
|
|
|
+ return attachments;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAttachments(List<String> attachments) {
|
|
|
+ this.attachments = attachments;
|
|
|
+ }
|
|
|
|
|
|
- public void setWrongId(Long wrongId)
|
|
|
+ public void setWrongId(Long wrongId)
|
|
|
{
|
|
|
this.wrongId = wrongId;
|
|
|
}
|
|
|
|
|
|
- public Long getWrongId()
|
|
|
+ public Long getWrongId()
|
|
|
{
|
|
|
return wrongId;
|
|
|
}
|
|
|
|
|
|
- public void setStudentId(Long studentId)
|
|
|
+ public void setStudentId(Long studentId)
|
|
|
{
|
|
|
this.studentId = studentId;
|
|
|
}
|
|
|
|
|
|
- public Long getStudentId()
|
|
|
+ public Long getStudentId()
|
|
|
{
|
|
|
return studentId;
|
|
|
}
|
|
|
|
|
|
- public void setQuestionId(Long questionId)
|
|
|
+ public void setQuestionId(Long questionId)
|
|
|
{
|
|
|
this.questionId = questionId;
|
|
|
}
|
|
|
|
|
|
- public Long getQuestionId()
|
|
|
+ public Long getQuestionId()
|
|
|
{
|
|
|
return questionId;
|
|
|
}
|
|
|
|
|
|
- public void setSource(String source)
|
|
|
+ public void setSource(String source)
|
|
|
{
|
|
|
this.source = source;
|
|
|
}
|
|
|
|
|
|
- public String getSource()
|
|
|
+ public String getSource()
|
|
|
{
|
|
|
return source;
|
|
|
}
|
|
|
|
|
|
- public void setState(Long state)
|
|
|
+ public void setState(Long state)
|
|
|
{
|
|
|
this.state = state;
|
|
|
}
|
|
|
|
|
|
- public Long getState()
|
|
|
+ public Long getState()
|
|
|
{
|
|
|
return state;
|
|
|
}
|
|
|
|
|
|
- public void setKnownledgeId(Long knownledgeId)
|
|
|
+ public void setKnownledgeId(Long knownledgeId)
|
|
|
{
|
|
|
this.knownledgeId = knownledgeId;
|
|
|
}
|
|
|
|
|
|
- public Long getKnownledgeId()
|
|
|
+ public Long getKnownledgeId()
|
|
|
{
|
|
|
return knownledgeId;
|
|
|
}
|
|
|
|
|
|
- public void setSubjectId(Long subjectId)
|
|
|
+ public void setSubjectId(Long subjectId)
|
|
|
{
|
|
|
this.subjectId = subjectId;
|
|
|
}
|
|
|
|
|
|
- public Long getSubjectId()
|
|
|
+ public Long getSubjectId()
|
|
|
{
|
|
|
return subjectId;
|
|
|
}
|
|
|
|
|
|
- public void setPaperId(Long paperId)
|
|
|
+ public void setPaperId(Long paperId)
|
|
|
{
|
|
|
this.paperId = paperId;
|
|
|
}
|
|
|
|
|
|
- public Long getPaperId()
|
|
|
+ public Long getPaperId()
|
|
|
{
|
|
|
return paperId;
|
|
|
}
|
|
|
|
|
|
- public void setAnswers(String answers)
|
|
|
+ public void setAnswers(String answers)
|
|
|
{
|
|
|
this.answers = answers;
|
|
|
}
|
|
|
|
|
|
- public String getAnswers()
|
|
|
+ public String getAnswers()
|
|
|
{
|
|
|
return answers;
|
|
|
}
|
|
|
|
|
|
- public void setAnswer1(String answer1)
|
|
|
+ public void setAnswer1(String answer1)
|
|
|
{
|
|
|
this.answer1 = answer1;
|
|
|
}
|
|
|
|
|
|
- public String getAnswer1()
|
|
|
+ public String getAnswer1()
|
|
|
{
|
|
|
return answer1;
|
|
|
}
|
|
|
|
|
|
- public void setAnswer2(String answer2)
|
|
|
+ public void setAnswer2(String answer2)
|
|
|
{
|
|
|
this.answer2 = answer2;
|
|
|
}
|
|
|
|
|
|
- public String getAnswer2()
|
|
|
+ public String getAnswer2()
|
|
|
{
|
|
|
return answer2;
|
|
|
}
|
|
|
|
|
|
- public void setScoreTotal(Long scoreTotal)
|
|
|
+ public void setScoreTotal(Long scoreTotal)
|
|
|
{
|
|
|
this.scoreTotal = scoreTotal;
|
|
|
}
|
|
|
|
|
|
- public Long getScoreTotal()
|
|
|
+ public Long getScoreTotal()
|
|
|
{
|
|
|
return scoreTotal;
|
|
|
}
|
|
|
|
|
|
- public void setScore(Long score)
|
|
|
+ public void setScore(Long score)
|
|
|
{
|
|
|
this.score = score;
|
|
|
}
|
|
|
|
|
|
- public Long getScore()
|
|
|
+ public Long getScore()
|
|
|
{
|
|
|
return score;
|
|
|
}
|
|
|
|
|
|
- public void setScoreLevel(String scoreLevel)
|
|
|
+ public void setScoreLevel(String scoreLevel)
|
|
|
{
|
|
|
this.scoreLevel = scoreLevel;
|
|
|
}
|
|
|
|
|
|
- public String getScoreLevel()
|
|
|
+ public String getScoreLevel()
|
|
|
{
|
|
|
return scoreLevel;
|
|
|
}
|
|
|
|
|
|
- public void setScoreRate(Long scoreRate)
|
|
|
+ public void setScoreRate(Long scoreRate)
|
|
|
{
|
|
|
this.scoreRate = scoreRate;
|
|
|
}
|
|
|
|
|
|
- public Long getScoreRate()
|
|
|
+ public Long getScoreRate()
|
|
|
{
|
|
|
return scoreRate;
|
|
|
}
|
|
|
|
|
|
- public void setWrongCount(Long wrongCount)
|
|
|
+ public void setWrongCount(Long wrongCount)
|
|
|
{
|
|
|
this.wrongCount = wrongCount;
|
|
|
}
|
|
|
|
|
|
- public Long getWrongCount()
|
|
|
+ public Long getWrongCount()
|
|
|
{
|
|
|
return wrongCount;
|
|
|
}
|
|
|
|
|
|
- public void setRightCount(Long rightCount)
|
|
|
+ public void setRightCount(Long rightCount)
|
|
|
{
|
|
|
this.rightCount = rightCount;
|
|
|
}
|
|
|
|
|
|
- public Long getRightCount()
|
|
|
+ public Long getRightCount()
|
|
|
{
|
|
|
return rightCount;
|
|
|
}
|
|
|
|
|
|
- public void setTotalCount(Long totalCount)
|
|
|
+ public void setTotalCount(Long totalCount)
|
|
|
{
|
|
|
this.totalCount = totalCount;
|
|
|
}
|
|
|
|
|
|
- public Long getTotalCount()
|
|
|
+ public Long getTotalCount()
|
|
|
{
|
|
|
return totalCount;
|
|
|
}
|
|
|
|
|
|
- public void setCreatedTime(Date createdTime)
|
|
|
+ public void setCreatedTime(Date createdTime)
|
|
|
{
|
|
|
this.createdTime = createdTime;
|
|
|
}
|
|
|
|
|
|
- public Date getCreatedTime()
|
|
|
+ public Date getCreatedTime()
|
|
|
{
|
|
|
return createdTime;
|
|
|
}
|
|
|
|
|
|
- public void setUpdatedTime(Date updatedTime)
|
|
|
+ public void setUpdatedTime(Date updatedTime)
|
|
|
{
|
|
|
this.updatedTime = updatedTime;
|
|
|
}
|
|
|
|
|
|
- public Date getUpdatedTime()
|
|
|
+ public Date getUpdatedTime()
|
|
|
{
|
|
|
return updatedTime;
|
|
|
}
|
|
|
|
|
|
- public void setCollect(Long collect)
|
|
|
+ public void setCollect(Long collect)
|
|
|
{
|
|
|
this.collect = collect;
|
|
|
}
|
|
|
|
|
|
- public Long getCollect()
|
|
|
+ public Long getCollect()
|
|
|
{
|
|
|
return collect;
|
|
|
}
|