|
@@ -1,8 +1,13 @@
|
|
package com.yonge.cooleshow.biz.dal.dto.search;
|
|
package com.yonge.cooleshow.biz.dal.dto.search;
|
|
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
+import com.yonge.cooleshow.biz.dal.enums.AuditEnum;
|
|
import com.yonge.cooleshow.biz.dal.support.Query;
|
|
import com.yonge.cooleshow.biz.dal.support.Query;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
+
|
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
/**
|
|
* @author: cy
|
|
* @author: cy
|
|
@@ -13,6 +18,31 @@ public class VideoLessonSearch extends Query {
|
|
@ApiModelProperty(value = "视频组id")
|
|
@ApiModelProperty(value = "视频组id")
|
|
private Long videoLessonGroupId;
|
|
private Long videoLessonGroupId;
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "学生id")
|
|
|
|
+ private Long studentId;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "课程编号/老师编号/老师姓名/老师手机")
|
|
|
|
+ private String search;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "订单号")
|
|
|
|
+ private String orderNo;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty("课程声部")
|
|
|
|
+ private String lessonSubject;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "审核状态(0:待审核 1:通过 2:未通过)")
|
|
|
|
+ private Integer auditStatus;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "申请开始时间")
|
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
|
+ private Date startTime;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "申请结束时间")
|
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
|
+ private Date endTime;
|
|
|
|
+
|
|
public Long getVideoLessonGroupId() {
|
|
public Long getVideoLessonGroupId() {
|
|
return videoLessonGroupId;
|
|
return videoLessonGroupId;
|
|
}
|
|
}
|
|
@@ -20,4 +50,60 @@ public class VideoLessonSearch extends Query {
|
|
public void setVideoLessonGroupId(Long videoLessonGroupId) {
|
|
public void setVideoLessonGroupId(Long videoLessonGroupId) {
|
|
this.videoLessonGroupId = videoLessonGroupId;
|
|
this.videoLessonGroupId = videoLessonGroupId;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public Long getStudentId() {
|
|
|
|
+ return studentId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setStudentId(Long studentId) {
|
|
|
|
+ this.studentId = studentId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getSearch() {
|
|
|
|
+ return search;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSearch(String search) {
|
|
|
|
+ this.search = search;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getOrderNo() {
|
|
|
|
+ return orderNo;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setOrderNo(String orderNo) {
|
|
|
|
+ this.orderNo = orderNo;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getLessonSubject() {
|
|
|
|
+ return lessonSubject;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setLessonSubject(String lessonSubject) {
|
|
|
|
+ this.lessonSubject = lessonSubject;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getAuditStatus() {
|
|
|
|
+ return auditStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setAuditStatus(Integer auditStatus) {
|
|
|
|
+ this.auditStatus = auditStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Date getStartTime() {
|
|
|
|
+ return startTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setStartTime(Date startTime) {
|
|
|
|
+ this.startTime = startTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Date getEndTime() {
|
|
|
|
+ return endTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setEndTime(Date endTime) {
|
|
|
|
+ this.endTime = endTime;
|
|
|
|
+ }
|
|
}
|
|
}
|