1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| package com.ycl.jxkg.domain.query;
|
| import com.ycl.jxkg.domain.base.AbsQuery;
| import io.swagger.annotations.ApiModel;
| import lombok.Data;
|
| /**
| * 考试查询
| *
| * @author xp
| * @since 2024-06-11
| */
| @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;
|
| }
|
|