|
@@ -7,6 +7,7 @@ import com.yonge.cooleshow.common.enums.YesOrNoEnum;
|
|
|
import com.yonge.toolset.base.page.QueryInfo;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
import java.util.Date;
|
|
@@ -18,6 +19,7 @@ import java.util.List;
|
|
|
* @author liujunchi
|
|
|
* @date 2022-04-13
|
|
|
*/
|
|
|
+@Data
|
|
|
@ApiModel("课后作业查询条件")
|
|
|
public class HomeworkSearch extends QueryInfo {
|
|
|
|
|
@@ -61,99 +63,6 @@ public class HomeworkSearch extends QueryInfo {
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
private Date endTime;
|
|
|
|
|
|
- public HomeworkStatusEnum getHomeworkStatus() {
|
|
|
- return homeworkStatus;
|
|
|
- }
|
|
|
-
|
|
|
- public void setHomeworkStatus(HomeworkStatusEnum homeworkStatus) {
|
|
|
- this.homeworkStatus = homeworkStatus;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getCourseScheduleId() {
|
|
|
- return courseScheduleId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCourseScheduleId(Long courseScheduleId) {
|
|
|
- this.courseScheduleId = courseScheduleId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getTeacherId() {
|
|
|
- return teacherId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTeacherId(Long teacherId) {
|
|
|
- this.teacherId = teacherId;
|
|
|
- }
|
|
|
-
|
|
|
- public List<CourseScheduleEnum> getCourseType() {
|
|
|
- return courseType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCourseType(List<CourseScheduleEnum> courseType) {
|
|
|
- this.courseType = courseType;
|
|
|
- }
|
|
|
-
|
|
|
- public CourseScheduleEnum getCourseStatus() {
|
|
|
- return courseStatus;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCourseStatus(CourseScheduleEnum courseStatus) {
|
|
|
- this.courseStatus = courseStatus;
|
|
|
- }
|
|
|
-
|
|
|
- public YesOrNoEnum getDecorate() {
|
|
|
- return decorate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDecorate(YesOrNoEnum decorate) {
|
|
|
- this.decorate = decorate;
|
|
|
- }
|
|
|
-
|
|
|
- public String getDate() {
|
|
|
- return date;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDate(String date) {
|
|
|
- this.date = date;
|
|
|
- }
|
|
|
-
|
|
|
- public YesOrNoEnum getSubmit() {
|
|
|
- return submit;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSubmit(YesOrNoEnum submit) {
|
|
|
- this.submit = submit;
|
|
|
- }
|
|
|
-
|
|
|
- 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 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;
|
|
|
- }
|
|
|
+ @ApiModelProperty("客户端")
|
|
|
+ private String clientType;
|
|
|
}
|