| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- package com.ruoyi.learn.domain;
- import java.util.Date;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- /**
- * 学生计划执行情况对象 learn_plan_study
- *
- * @author ruoyi
- * @date 2025-09-25
- */
- public class LearnPlanStudy extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 计划学习id */
- private String id;
- /** 学生id */
- @Excel(name = "学生id")
- private Long studentId;
- /** 对应计划 */
- @Excel(name = "对应计划")
- private Long planId;
- /** 月份序号 */
- @Excel(name = "月份序号")
- private Long monthSeq;
- /** 周序号 */
- @Excel(name = "周序号")
- private Long weekSeq;
- /** 学习日期 */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "学习日期", width = 30, dateFormat = "yyyy-MM-dd")
- private Date reportDate;
- /** 完成题数 */
- @Excel(name = "完成题数")
- private Long questionCount;
- @Excel(name = "完成题数")
- private Long rightCount;
- /** 完成视频时间 */
- @Excel(name = "完成视频数量")
- private Long videoCount;
- /** 完成视频时间 */
- @Excel(name = "完成视频时间")
- private Long videoTime;
- /** 计划做题数 */
- @Excel(name = "计划做题数")
- private Integer questionPlan;
- /** 计划视频时间 */
- @Excel(name = "计划视频时间")
- private Integer videoPlan;
- public void setId(String id)
- {
- this.id = id;
- }
- public String getId()
- {
- return id;
- }
- public void setStudentId(Long studentId)
- {
- this.studentId = studentId;
- }
- public Long getStudentId()
- {
- return studentId;
- }
- public void setPlanId(Long planId)
- {
- this.planId = planId;
- }
- public Long getPlanId()
- {
- return planId;
- }
- public void setMonthSeq(Long monthSeq)
- {
- this.monthSeq = monthSeq;
- }
- public Long getMonthSeq()
- {
- return monthSeq;
- }
- public void setWeekSeq(Long weekSeq)
- {
- this.weekSeq = weekSeq;
- }
- public Long getWeekSeq()
- {
- return weekSeq;
- }
- public void setReportDate(Date reportDate)
- {
- this.reportDate = reportDate;
- }
- public Date getReportDate()
- {
- return reportDate;
- }
- public void setQuestionCount(Long questionCount)
- {
- this.questionCount = questionCount;
- }
- public Long getQuestionCount()
- {
- return questionCount;
- }
- public Long getRightCount() {
- return rightCount;
- }
- public void setRightCount(Long rightCount) {
- this.rightCount = rightCount;
- }
- public Long getVideoCount() {
- return videoCount;
- }
- public void setVideoCount(Long videoCount) {
- this.videoCount = videoCount;
- }
- public void setVideoTime(Long videoTime)
- {
- this.videoTime = videoTime;
- }
- public Long getVideoTime()
- {
- return videoTime;
- }
- public void setQuestionPlan(Integer questionPlan)
- {
- this.questionPlan = questionPlan;
- }
- public Integer getQuestionPlan()
- {
- return questionPlan;
- }
- public void setVideoPlan(Integer videoPlan)
- {
- this.videoPlan = videoPlan;
- }
- public Integer getVideoPlan()
- {
- return videoPlan;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("id", getId())
- .append("studentId", getStudentId())
- .append("planId", getPlanId())
- .append("monthSeq", getMonthSeq())
- .append("weekSeq", getWeekSeq())
- .append("reportDate", getReportDate())
- .append("questionCount", getQuestionCount())
- .append("videoTime", getVideoTime())
- .append("questionPlan", getQuestionPlan())
- .append("videoPlan", getVideoPlan())
- .append("updateTime", getUpdateTime())
- .toString();
- }
- }
|