派生自 projectDept/qhighschool

胡仁荣
2023-04-07 4c61d5fd5c273cadffe9f20464b5341a23f4e60f
src/main/java/com/qxueyou/scc/teach/student/model/StuStudent.java
@@ -33,6 +33,14 @@
   public static final String STATUS_REGISTER = "register";
   public static final String STATUS_ACTIVE = "active";
   public static final String STATUS_DEACTIVE = "deactive";
   public static final String STATUS_GRADUATED = "graduated";
   /**
    * 状态:旷课,未打卡,已打卡
    */
   public static final String STATUS_TRUANCY = "truancy";
   public static final String STATUS_NO_CLOCKING = "noClocking";
   public static final String STATUS_PUNCHE = "punched";
   private String studentId;
   private Date createTime;
@@ -56,6 +64,7 @@
   private String studentNumber;
   private String attendanceStatus;
   private String graduationText;
   private String comment;
   public StuStudent() {
   }
@@ -73,7 +82,7 @@
   public StuStudent(String studentId, Date createTime, Date updateTime, String creator, String createId,
         String updator, String updateId, boolean deleteFlag, String userId, String name, String classId,
         String tenantId, String status, String attendanceStatus, String graduationText,String studentNumber) {
         String tenantId, String status, String attendanceStatus, String graduationText,String comment,String studentNumber) {
      this.studentId = studentId;
      this.createTime = createTime;
      this.updateTime = updateTime;
@@ -89,6 +98,7 @@
      this.status = status;
      this.attendanceStatus = attendanceStatus;
      this.graduationText = graduationText;
      this.comment = comment;
      this.studentNumber=studentNumber;
   }
@@ -235,6 +245,14 @@
      this.graduationText = graduationText;
   }
   @Column(name = "COMMENT", length = 200)
   public String getComment() {
      return this.comment;
   }
   public void setComment(String comment) {
      this.comment = comment;
   }
   @Column(name = "STUDENT_NO", length = 32)
   public String getStudentNo() {
      return studentNo;