派生自 projectDept/qhighschool

EricsHu
2023-11-24 3a27392dc23193ae839526efd779f36589bc91cc
src/main/java/com/qxueyou/scc/admin/progress/model/SubjectLectureProgressDetail.java
@@ -18,7 +18,7 @@
import com.qxueyou.scc.base.model.ITrace;
/**
 * 学习进度明细
 * 学习进度明细
 *
 * @author sven
 *
@@ -30,8 +30,8 @@
   private static final long serialVersionUID = -1565188126862586738L;
   private String detailId;
   private String progressId;
   private Double start;
   private Double end;
   private int start;
   private int end;
   private String learnerId;
   private String targetId;
   private Date createTime;
@@ -55,25 +55,25 @@
      this.progressId = progressId;
   }
   public Double getStart() {
   public int getStart() {
      return start;
   }
   public void setStart(Double start) {
   public void setStart(int start) {
      this.start = start;
   }
   public Double getEnd() {
   public int getEnd() {
      return end;
   }
   public void setEnd(Double end) {
   public void setEnd(int end) {
      this.end = end;
   }