|
|
|
@ -1,11 +1,13 @@
|
|
|
|
|
package com.ibeetl.jlw.web.query;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.date.DateTime;
|
|
|
|
|
import cn.hutool.core.date.DateUtil;
|
|
|
|
|
import cn.jlw.validate.ValidateConfig;
|
|
|
|
|
import com.ibeetl.admin.core.annotation.Query;
|
|
|
|
|
import com.ibeetl.admin.core.web.query.PageParam;
|
|
|
|
|
import com.ibeetl.jlw.entity.TeacherOpenCourseStudentSigninLog;
|
|
|
|
|
import com.ibeetl.jlw.enums.SignInTypeEnum;
|
|
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
|
import java.util.Date;
|
|
|
|
@ -22,8 +24,8 @@ public class TeacherOpenCourseStudentSigninLogQuery extends PageParam {
|
|
|
|
|
private Long teacherOpenCourseStudentSigninSettingId;
|
|
|
|
|
|
|
|
|
|
// 签到场次(时间)
|
|
|
|
|
|
|
|
|
|
private Date teacherOpenCourseStudentSigninSettingSessionTime;
|
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
private String teacherOpenCourseStudentSigninSettingSessionTime;
|
|
|
|
|
@Query(name = "学生ID", display = false,type=Query.TYPE_DICT,dict="student.student_name.student_status=1")
|
|
|
|
|
private Long studentId;
|
|
|
|
|
@Query(name = "开课ID", display = false,type=Query.TYPE_DICT,dict="teacher_open_course.teacher_open_course_title.teacher_open_course_status=1")
|
|
|
|
@ -151,7 +153,7 @@ public class TeacherOpenCourseStudentSigninLogQuery extends PageParam {
|
|
|
|
|
pojo.setTeacherOpenCourseStudentSigninLogIp(this.getTeacherOpenCourseStudentSigninLogIp());
|
|
|
|
|
pojo.setTeacherOpenCourseStudentSigninLogTag(this.getTeacherOpenCourseStudentSigninLogTag());
|
|
|
|
|
pojo.setTeacherOpenCourseStudentSigninSettingId(this.getTeacherOpenCourseStudentSigninSettingId());
|
|
|
|
|
pojo.setTeacherOpenCourseStudentSigninSettingSessionTime(this.getTeacherOpenCourseStudentSigninSettingSessionTime());
|
|
|
|
|
pojo.setTeacherOpenCourseStudentSigninSettingSessionTime(DateUtil.parse(this.getTeacherOpenCourseStudentSigninSettingSessionTime()));
|
|
|
|
|
pojo.setOrgId(this.getOrgId());
|
|
|
|
|
pojo.setUserId(this.getUserId());
|
|
|
|
|
return pojo;
|
|
|
|
@ -216,11 +218,11 @@ public class TeacherOpenCourseStudentSigninLogQuery extends PageParam {
|
|
|
|
|
this.teacherOpenCourseStudentSigninSettingId = teacherOpenCourseStudentSigninSettingId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Date getTeacherOpenCourseStudentSigninSettingSessionTime() {
|
|
|
|
|
public String getTeacherOpenCourseStudentSigninSettingSessionTime() {
|
|
|
|
|
return teacherOpenCourseStudentSigninSettingSessionTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setTeacherOpenCourseStudentSigninSettingSessionTime(Date teacherOpenCourseStudentSigninSettingSessionTime) {
|
|
|
|
|
public void setTeacherOpenCourseStudentSigninSettingSessionTime(String teacherOpenCourseStudentSigninSettingSessionTime) {
|
|
|
|
|
this.teacherOpenCourseStudentSigninSettingSessionTime = (teacherOpenCourseStudentSigninSettingSessionTime);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|