| | |
| | | package com.ycl.jxkg.domain.query; |
| | | |
| | | import com.ycl.jxkg.domain.base.AbsQuery; |
| | | import java.util.List; |
| | | import org.springframework.lang.NonNull; |
| | | import javax.validation.constraints.NotBlank; |
| | | import javax.validation.constraints.NotNull; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | |
| | | @Data |
| | | @ApiModel(value = "Exam查询", description = "考试查询") |
| | | public class ExamQuery extends AbsQuery { |
| | | |
| | | /** 考试名称 */ |
| | | private String examName; |
| | | |
| | | /** 考试id */ |
| | | private Integer examId; |
| | | |
| | | /** 关键字 */ |
| | | private String keyword; |
| | | |
| | | /** 班级 */ |
| | | private Integer classesId; |
| | | |
| | | /** 状态 */ |
| | | private String status; |
| | | |
| | | } |
| | | |